Code Tutoiral#
import torch
import IPython.display as ipd
sr = 44100
duration = 5
audio_sample = torch.randn(1, sr * duration)
ipd.Audio(audio_sample.numpy(), rate=sr)
Stable Audio Open Tutorial#
Stable Audio Open is fully avaiable through HuggingFace. To run Stable Audio Open locally, you’ll first need to generate a $HF_TOKEN for yourself, which can be done here https://huggingface.co/docs/huggingface_hub/en/quick-start#authentication (which you will first need a HuggingFace account for). Once you generate the token, you should export it as an environment variable with a bash command like
export HF_TOKEN="YOUR_HF_TOKEN"
The rest of the tutorial very much follows the demo design of the public Stable Audio Open resources:
First, we’ll install some dependencies if you don’t already have them. Stable-Audio-Tools can be a bit finnicky to install directly, so we suggest making a dedicated virtual envinroment (and not conda) to run this notebook.
!pip install torch torchaudio torchvision stable-audio-tools einops
Requirement already satisfied: torch in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (2.2.2)
Collecting torchaudio
Obtaining dependency information for torchaudio from https://files.pythonhosted.org/packages/57/c4/80cc3315dd1ca706643b78f894901d4d888ffe376a5e401f73d9db61071e/torchaudio-2.2.2-cp311-cp311-macosx_10_13_x86_64.whl.metadata
Downloading torchaudio-2.2.2-cp311-cp311-macosx_10_13_x86_64.whl.metadata (6.4 kB)
Collecting torchvision
Obtaining dependency information for torchvision from https://files.pythonhosted.org/packages/46/95/179dd1bf8fd6bd689f0907f4baed557d2b12d2cf3d7ed1a8ecefe0a63d83/torchvision-0.17.2-cp311-cp311-macosx_10_13_x86_64.whl.metadata
Downloading torchvision-0.17.2-cp311-cp311-macosx_10_13_x86_64.whl.metadata (6.6 kB)
Collecting stable-audio-tools
Obtaining dependency information for stable-audio-tools from https://files.pythonhosted.org/packages/98/b9/94c7dab8cfe7d41a23133634576fb89412e3430f28ca8d44411a77c2f18d/stable_audio_tools-0.0.16-py3-none-any.whl.metadata
Downloading stable_audio_tools-0.0.16-py3-none-any.whl.metadata (1.3 kB)
Collecting einops
Obtaining dependency information for einops from https://files.pythonhosted.org/packages/44/5a/f0b9ad6c0a9017e62d4735daaeb11ba3b6c009d69a26141b258cd37b5588/einops-0.8.0-py3-none-any.whl.metadata
Downloading einops-0.8.0-py3-none-any.whl.metadata (12 kB)
Requirement already satisfied: filelock in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from torch) (3.16.1)
Requirement already satisfied: typing-extensions>=4.8.0 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from torch) (4.12.2)
Requirement already satisfied: sympy in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from torch) (1.13.3)
Requirement already satisfied: networkx in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from torch) (3.4.1)
Requirement already satisfied: jinja2 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from torch) (3.1.4)
Requirement already satisfied: fsspec in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from torch) (2024.9.0)
Requirement already satisfied: numpy in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from torchvision) (1.24.1)
Collecting pillow!=8.3.*,>=5.3.0 (from torchvision)
Obtaining dependency information for pillow!=8.3.*,>=5.3.0 from https://files.pythonhosted.org/packages/f0/eb/f7e21b113dd48a9c97d364e0915b3988c6a0b6207652f5a92372871b7aa4/pillow-11.0.0-cp311-cp311-macosx_10_10_x86_64.whl.metadata
Downloading pillow-11.0.0-cp311-cp311-macosx_10_10_x86_64.whl.metadata (9.1 kB)
Collecting aeiou==0.0.20 (from stable-audio-tools)
Obtaining dependency information for aeiou==0.0.20 from https://files.pythonhosted.org/packages/c1/dd/ce6964e9f8822f6e63ebc59bdcc5ae445126b7356da63188fa0e6265054e/aeiou-0.0.20-py3-none-any.whl.metadata
Downloading aeiou-0.0.20-py3-none-any.whl.metadata (3.6 kB)
Collecting alias-free-torch==0.0.6 (from stable-audio-tools)
Obtaining dependency information for alias-free-torch==0.0.6 from https://files.pythonhosted.org/packages/b8/8e/8dd4d6de0fbba9d8f10d7b655be0578d5bda6e4db425210c265b0ea6c804/alias_free_torch-0.0.6-py3-none-any.whl.metadata
Downloading alias_free_torch-0.0.6-py3-none-any.whl.metadata (3.8 kB)
Collecting auraloss==0.4.0 (from stable-audio-tools)
Obtaining dependency information for auraloss==0.4.0 from https://files.pythonhosted.org/packages/a6/ab/8df927d3f0951cf67ca5973d89b35bcbda1777a4c78bf90a853d02d91285/auraloss-0.4.0-py3-none-any.whl.metadata
Downloading auraloss-0.4.0-py3-none-any.whl.metadata (8.0 kB)
Collecting descript-audio-codec==1.0.0 (from stable-audio-tools)
Obtaining dependency information for descript-audio-codec==1.0.0 from https://files.pythonhosted.org/packages/6e/c4/93f7309eb40a9299c59a6637f13c21b08e585c569fee85901ccd55ce00f5/descript_audio_codec-1.0.0-py3-none-any.whl.metadata
Downloading descript_audio_codec-1.0.0-py3-none-any.whl.metadata (7.8 kB)
Collecting einops
Obtaining dependency information for einops from https://files.pythonhosted.org/packages/29/0b/2d1c0ebfd092e25935b86509a9a817159212d82aa43d7fb07eca4eeff2c2/einops-0.7.0-py3-none-any.whl.metadata
Downloading einops-0.7.0-py3-none-any.whl.metadata (13 kB)
Collecting einops-exts==0.0.4 (from stable-audio-tools)
Obtaining dependency information for einops-exts==0.0.4 from https://files.pythonhosted.org/packages/78/01/8da8dd078b354a89602a875d310a0d725dad92b5b4d61069576e0a0e02e4/einops_exts-0.0.4-py3-none-any.whl.metadata
Downloading einops_exts-0.0.4-py3-none-any.whl.metadata (621 bytes)
Collecting ema-pytorch==0.2.3 (from stable-audio-tools)
Obtaining dependency information for ema-pytorch==0.2.3 from https://files.pythonhosted.org/packages/d9/96/9cf1a409640adac045750b2ba9d1355c83942fbae74f21284c2133292bee/ema_pytorch-0.2.3-py3-none-any.whl.metadata
Downloading ema_pytorch-0.2.3-py3-none-any.whl.metadata (693 bytes)
Collecting encodec==0.1.1 (from stable-audio-tools)
Downloading encodec-0.1.1.tar.gz (3.7 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/3.7 MB ? eta -:--:--
╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.1/3.7 MB 2.0 MB/s eta 0:00:02
━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.1/3.7 MB 2.1 MB/s eta 0:00:02
━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.2/3.7 MB 2.1 MB/s eta 0:00:02
━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.3/3.7 MB 1.9 MB/s eta 0:00:02
━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.4/3.7 MB 1.9 MB/s eta 0:00:02
━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.4/3.7 MB 1.9 MB/s eta 0:00:02
━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.5/3.7 MB 1.9 MB/s eta 0:00:02
━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.6/3.7 MB 1.9 MB/s eta 0:00:02
━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.7/3.7 MB 1.9 MB/s eta 0:00:02
━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.8/3.7 MB 2.0 MB/s eta 0:00:02
━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.9/3.7 MB 2.0 MB/s eta 0:00:02
━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/3.7 MB 2.1 MB/s eta 0:00:02
━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/3.7 MB 2.1 MB/s eta 0:00:02
━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/3.7 MB 2.2 MB/s eta 0:00:02
━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.7 MB 2.2 MB/s eta 0:00:02
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/3.7 MB 2.3 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 1.5/3.7 MB 2.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 1.6/3.7 MB 2.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 1.6/3.7 MB 2.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 1.7/3.7 MB 2.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 1.8/3.7 MB 2.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 2.0/3.7 MB 2.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 2.1/3.7 MB 2.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 2.3/3.7 MB 2.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━ 2.4/3.7 MB 2.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 2.6/3.7 MB 2.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 2.7/3.7 MB 2.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 2.9/3.7 MB 2.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 3.1/3.7 MB 2.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 3.3/3.7 MB 2.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 3.5/3.7 MB 2.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 3.7/3.7 MB 3.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.7/3.7 MB 2.9 MB/s eta 0:00:00
?25h
Preparing metadata (setup.py) ... ?25l- done
?25hCollecting gradio>=3.42.0 (from stable-audio-tools)
Obtaining dependency information for gradio>=3.42.0 from https://files.pythonhosted.org/packages/18/a1/1bdb57a072903b222b1a745aa634cb845ff5f52a88ddd5ed1640ecf30beb/gradio-5.5.0-py3-none-any.whl.metadata
Downloading gradio-5.5.0-py3-none-any.whl.metadata (16 kB)
Requirement already satisfied: huggingface-hub in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from stable-audio-tools) (0.26.2)
Collecting importlib-resources==5.12.0 (from stable-audio-tools)
Obtaining dependency information for importlib-resources==5.12.0 from https://files.pythonhosted.org/packages/38/71/c13ea695a4393639830bf96baea956538ba7a9d06fcce7cef10bfff20f72/importlib_resources-5.12.0-py3-none-any.whl.metadata
Downloading importlib_resources-5.12.0-py3-none-any.whl.metadata (4.1 kB)
Collecting k-diffusion==0.1.1 (from stable-audio-tools)
Obtaining dependency information for k-diffusion==0.1.1 from https://files.pythonhosted.org/packages/de/d9/67ebd9d6ce9e65747e720c4c5614cd3a137e61340aec274657fcd9cc5162/k_diffusion-0.1.1-py3-none-any.whl.metadata
Downloading k_diffusion-0.1.1-py3-none-any.whl.metadata (3.9 kB)
Collecting laion-clap==1.1.4 (from stable-audio-tools)
Obtaining dependency information for laion-clap==1.1.4 from https://files.pythonhosted.org/packages/4e/3c/c691e6c5d925a364d63eec27d1f10477ca7902febe10a8e1f86284dba754/laion_clap-1.1.4-py3-none-any.whl.metadata
Downloading laion_clap-1.1.4-py3-none-any.whl.metadata (26 kB)
Collecting local-attention==1.8.6 (from stable-audio-tools)
Obtaining dependency information for local-attention==1.8.6 from https://files.pythonhosted.org/packages/70/7c/75718504a1bf0562e7e02def34cfc9bb274b6f284773cbeeeba0767a31be/local_attention-1.8.6-py3-none-any.whl.metadata
Downloading local_attention-1.8.6-py3-none-any.whl.metadata (684 bytes)
Collecting pandas==2.0.2 (from stable-audio-tools)
Obtaining dependency information for pandas==2.0.2 from https://files.pythonhosted.org/packages/2a/49/be958fefa589186b54daaa9a72fa1a2e19e42a2dcab87ee15c8273259da0/pandas-2.0.2-cp311-cp311-macosx_10_9_x86_64.whl.metadata
Downloading pandas-2.0.2-cp311-cp311-macosx_10_9_x86_64.whl.metadata (18 kB)
Collecting pedalboard==0.7.4 (from stable-audio-tools)
Obtaining dependency information for pedalboard==0.7.4 from https://files.pythonhosted.org/packages/6d/60/1b69b697fe067d51219cfd64d0712bcbbce3b187389cb0793d9844ec14b1/pedalboard-0.7.4-cp311-cp311-macosx_10_13_x86_64.whl.metadata
Downloading pedalboard-0.7.4-cp311-cp311-macosx_10_13_x86_64.whl.metadata (15 kB)
Collecting prefigure==0.0.9 (from stable-audio-tools)
Obtaining dependency information for prefigure==0.0.9 from https://files.pythonhosted.org/packages/01/40/5730cc60bf438b56438756e45ac469c01bcf9c47d87632c468623167b7fe/prefigure-0.0.9-py3-none-any.whl.metadata
Downloading prefigure-0.0.9-py3-none-any.whl.metadata (5.9 kB)
Collecting pytorch-lightning==2.1.0 (from stable-audio-tools)
Obtaining dependency information for pytorch-lightning==2.1.0 from https://files.pythonhosted.org/packages/98/09/9b2eab7833494e7c82f70c9b2f8e907d38231f4535704e3045a8a4960c8e/pytorch_lightning-2.1.0-py3-none-any.whl.metadata
Downloading pytorch_lightning-2.1.0-py3-none-any.whl.metadata (23 kB)
Collecting PyWavelets==1.4.1 (from stable-audio-tools)
Obtaining dependency information for PyWavelets==1.4.1 from https://files.pythonhosted.org/packages/13/e4/86bb218c7926e1da7a52e0696cab120a17c995933f08d8228d9aa83b44c5/PyWavelets-1.4.1-cp311-cp311-macosx_10_13_x86_64.whl.metadata
Downloading PyWavelets-1.4.1-cp311-cp311-macosx_10_13_x86_64.whl.metadata (1.9 kB)
Collecting safetensors (from stable-audio-tools)
Obtaining dependency information for safetensors from https://files.pythonhosted.org/packages/9a/a5/25bcf75e373412daf1fd88045ab3aa8140a0d804ef0e70712c4f2c5b94d8/safetensors-0.4.5-cp311-cp311-macosx_10_12_x86_64.whl.metadata
Downloading safetensors-0.4.5-cp311-cp311-macosx_10_12_x86_64.whl.metadata (3.8 kB)
Collecting sentencepiece==0.1.99 (from stable-audio-tools)
Obtaining dependency information for sentencepiece==0.1.99 from https://files.pythonhosted.org/packages/49/2a/b95df0b8593aee5d9e68b9a9f24e83c69657afb46b24f83b57098d926401/sentencepiece-0.1.99-cp311-cp311-macosx_10_9_x86_64.whl.metadata
Downloading sentencepiece-0.1.99-cp311-cp311-macosx_10_9_x86_64.whl.metadata (7.7 kB)
Collecting s3fs (from stable-audio-tools)
Obtaining dependency information for s3fs from https://files.pythonhosted.org/packages/99/44/bb9ff095ae7b1b6908480f683b6ca6b71c2105d343a5e5cb25334b01f5fa/s3fs-2024.10.0-py3-none-any.whl.metadata
Downloading s3fs-2024.10.0-py3-none-any.whl.metadata (1.7 kB)
Collecting torchmetrics==0.11.4 (from stable-audio-tools)
Obtaining dependency information for torchmetrics==0.11.4 from https://files.pythonhosted.org/packages/fb/47/6e9f9b41c48750a45ad07cc6d43a2979bfc09e6989656aece97cc59cbef1/torchmetrics-0.11.4-py3-none-any.whl.metadata
Downloading torchmetrics-0.11.4-py3-none-any.whl.metadata (15 kB)
Requirement already satisfied: tqdm in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from stable-audio-tools) (4.66.6)
Collecting transformers (from stable-audio-tools)
Obtaining dependency information for transformers from https://files.pythonhosted.org/packages/ed/ad/c9b96572ab7994e73c64588f8875741823f2daba70e746547fff9a2d9a54/transformers-4.46.2-py3-none-any.whl.metadata
Downloading transformers-4.46.2-py3-none-any.whl.metadata (44 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/44.1 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 44.1/44.1 kB 3.5 MB/s eta 0:00:00
?25h
Collecting v-diffusion-pytorch==0.0.2 (from stable-audio-tools)
Obtaining dependency information for v-diffusion-pytorch==0.0.2 from https://files.pythonhosted.org/packages/4e/35/0ea5e3611e0b63766a56f81e7bc5cfa05c52e3a3f0b8d66b25c7262aedae/v_diffusion_pytorch-0.0.2-py3-none-any.whl.metadata
Downloading v_diffusion_pytorch-0.0.2-py3-none-any.whl.metadata (10.0 kB)
Collecting vector-quantize-pytorch==1.9.14 (from stable-audio-tools)
Obtaining dependency information for vector-quantize-pytorch==1.9.14 from https://files.pythonhosted.org/packages/02/9c/7dcce24e978bc14a18e2a3f7e2d6f4d2001533dc0cffab143bb3f8ec13d6/vector_quantize_pytorch-1.9.14-py3-none-any.whl.metadata
Downloading vector_quantize_pytorch-1.9.14-py3-none-any.whl.metadata (681 bytes)
Collecting wandb==0.15.4 (from stable-audio-tools)
Obtaining dependency information for wandb==0.15.4 from https://files.pythonhosted.org/packages/89/eb/a39c835871caca0173f526e321336a1a2b0961e38bf9b71b7213b651e3c8/wandb-0.15.4-py3-none-any.whl.metadata
Downloading wandb-0.15.4-py3-none-any.whl.metadata (8.1 kB)
Collecting webdataset==0.2.48 (from stable-audio-tools)
Obtaining dependency information for webdataset==0.2.48 from https://files.pythonhosted.org/packages/17/ca/a6c031bc1590789a3da14bd6a9cccc46c932401765d6d8f37e75c8214b44/webdataset-0.2.48-py3-none-any.whl.metadata
Downloading webdataset-0.2.48-py3-none-any.whl.metadata (29 kB)
Collecting x-transformers<1.27.0 (from stable-audio-tools)
Obtaining dependency information for x-transformers<1.27.0 from https://files.pythonhosted.org/packages/95/22/d1e337b9b4c8ea3aae5d399ace8c9cf4c2a7789cfe9d14766511fbc83c8b/x_transformers-1.26.6-py3-none-any.whl.metadata
Downloading x_transformers-1.26.6-py3-none-any.whl.metadata (661 bytes)
Collecting fastcore (from aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for fastcore from https://files.pythonhosted.org/packages/60/ca/10828fb40dcf097d1af84c1f2f863bae4046d5949450bf95b3260f767672/fastcore-1.7.19-py3-none-any.whl.metadata
Downloading fastcore-1.7.19-py3-none-any.whl.metadata (3.5 kB)
Collecting plotly (from aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for plotly from https://files.pythonhosted.org/packages/e5/ae/580600f441f6fc05218bd6c9d5794f4aef072a7d9093b291f1c50a9db8bc/plotly-5.24.1-py3-none-any.whl.metadata
Downloading plotly-5.24.1-py3-none-any.whl.metadata (7.3 kB)
Collecting bokeh (from aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for bokeh from https://files.pythonhosted.org/packages/72/a2/7b5a1a5419e400f715387a48f65225ec7a3f2104465f346fc75e8793407b/bokeh-3.6.1-py3-none-any.whl.metadata
Downloading bokeh-3.6.1-py3-none-any.whl.metadata (12 kB)
Collecting holoviews (from aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for holoviews from https://files.pythonhosted.org/packages/56/89/8df4efa78df8b129847c8a7c0e492376cca62ab68453e5a20375a1c6291b/holoviews-1.20.0-py3-none-any.whl.metadata
Downloading holoviews-1.20.0-py3-none-any.whl.metadata (9.9 kB)
Collecting scipy (from aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for scipy from https://files.pythonhosted.org/packages/5e/fc/9f1413bef53171f379d786aabc104d4abeea48ee84c553a3e3d8c9f96a9c/scipy-1.14.1-cp311-cp311-macosx_14_0_x86_64.whl.metadata
Downloading scipy-1.14.1-cp311-cp311-macosx_14_0_x86_64.whl.metadata (60 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/60.8 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 60.8/60.8 kB 4.0 MB/s eta 0:00:00
?25h
Collecting matplotlib (from aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for matplotlib from https://files.pythonhosted.org/packages/77/c2/f9d7fe80a8fcce9bb128d1381c6fe41a8d286d7e18395e273002e8e0fa34/matplotlib-3.9.2-cp311-cp311-macosx_10_12_x86_64.whl.metadata
Downloading matplotlib-3.9.2-cp311-cp311-macosx_10_12_x86_64.whl.metadata (11 kB)
Collecting librosa>=0.8.1 (from aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for librosa>=0.8.1 from https://files.pythonhosted.org/packages/8c/8a/2d231b35456506b7c98b3ab9bbf07917b205fed8615d2e59e976ab497fff/librosa-0.10.2.post1-py3-none-any.whl.metadata
Downloading librosa-0.10.2.post1-py3-none-any.whl.metadata (8.6 kB)
Requirement already satisfied: ipython in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from aeiou==0.0.20->stable-audio-tools) (8.28.0)
Collecting accelerate (from aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for accelerate from https://files.pythonhosted.org/packages/d1/d5/0050b2820a1e709ffa623f9a9e8ae42d0903535f2150613cbfeb7f16932a/accelerate-1.1.1-py3-none-any.whl.metadata
Downloading accelerate-1.1.1-py3-none-any.whl.metadata (19 kB)
Collecting soundfile<=0.10.2 (from aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for soundfile<=0.10.2 from https://files.pythonhosted.org/packages/d2/06/58d71f2041bc89919f56a69f8f2b9535a55d513bb005fbe4f8ee5d367170/SoundFile-0.10.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-macosx_10_5_x86_64.macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl.metadata
Downloading SoundFile-0.10.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-macosx_10_5_x86_64.macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl.metadata (10 kB)
Collecting umap-learn (from aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for umap-learn from https://files.pythonhosted.org/packages/3c/8f/671c0e1f2572ba625cbcc1faeba9435e00330c3d6962858711445cf1e817/umap_learn-0.5.7-py3-none-any.whl.metadata
Downloading umap_learn-0.5.7-py3-none-any.whl.metadata (21 kB)
Collecting argbind>=0.3.7 (from descript-audio-codec==1.0.0->stable-audio-tools)
Downloading argbind-0.3.9.tar.gz (17 kB)
Preparing metadata (setup.py) ... ?25l-
done
?25hCollecting descript-audiotools>=0.7.2 (from descript-audio-codec==1.0.0->stable-audio-tools)
Obtaining dependency information for descript-audiotools>=0.7.2 from https://files.pythonhosted.org/packages/68/b8/72a58cb3b241d869811be4f9328a37f1563dc9c48af8c0467cb681f9ed46/descript_audiotools-0.7.2-py2.py3-none-any.whl.metadata
Downloading descript_audiotools-0.7.2-py2.py3-none-any.whl.metadata (3.4 kB)
Collecting clean-fid (from k-diffusion==0.1.1->stable-audio-tools)
Obtaining dependency information for clean-fid from https://files.pythonhosted.org/packages/70/56/0dfc83e0fe455cfe6272b23a65039b4101c63a4e7446801e26178b675fbf/clean_fid-0.1.35-py3-none-any.whl.metadata
Downloading clean_fid-0.1.35-py3-none-any.whl.metadata (36 kB)
Collecting clip-anytorch (from k-diffusion==0.1.1->stable-audio-tools)
Obtaining dependency information for clip-anytorch from https://files.pythonhosted.org/packages/88/14/19d5ff584cb58f654d22d8d6552d7c2fff7b85e4a9d525357f62a4d1e7e0/clip_anytorch-2.6.0-py3-none-any.whl.metadata
Downloading clip_anytorch-2.6.0-py3-none-any.whl.metadata (8.4 kB)
Collecting dctorch (from k-diffusion==0.1.1->stable-audio-tools)
Obtaining dependency information for dctorch from https://files.pythonhosted.org/packages/cd/47/61b627404c2d6f31dcbc491ff83da1f4336c7ae7893cfdc6c52db490ec59/dctorch-0.1.2-py3-none-any.whl.metadata
Downloading dctorch-0.1.2-py3-none-any.whl.metadata (607 bytes)
Collecting jsonmerge (from k-diffusion==0.1.1->stable-audio-tools)
Obtaining dependency information for jsonmerge from https://files.pythonhosted.org/packages/71/c2/1032d0dbc2152c45f3d1e582a72e68f41898de9665202392d9400dfa329d/jsonmerge-1.9.2-py3-none-any.whl.metadata
Downloading jsonmerge-1.9.2-py3-none-any.whl.metadata (21 kB)
Collecting kornia (from k-diffusion==0.1.1->stable-audio-tools)
Obtaining dependency information for kornia from https://files.pythonhosted.org/packages/d8/cf/a61ef6f7faf98edadf4ce8094873d298f8582a3ec59b65c9174c516926e8/kornia-0.7.4-py2.py3-none-any.whl.metadata
Downloading kornia-0.7.4-py2.py3-none-any.whl.metadata (18 kB)
Collecting scikit-image (from k-diffusion==0.1.1->stable-audio-tools)
Obtaining dependency information for scikit-image from https://files.pythonhosted.org/packages/90/e3/564beb0c78bf83018a146dfcdc959c99c10a0d136480b932a350c852adbc/scikit_image-0.24.0-cp311-cp311-macosx_10_9_x86_64.whl.metadata
Downloading scikit_image-0.24.0-cp311-cp311-macosx_10_9_x86_64.whl.metadata (14 kB)
Collecting torchdiffeq (from k-diffusion==0.1.1->stable-audio-tools)
Obtaining dependency information for torchdiffeq from https://files.pythonhosted.org/packages/84/64/85249acbac630f34cd113dca4b1a72f55d3ad4c26bc9305a27aef6049756/torchdiffeq-0.2.4-py3-none-any.whl.metadata
Downloading torchdiffeq-0.2.4-py3-none-any.whl.metadata (440 bytes)
Collecting torchsde (from k-diffusion==0.1.1->stable-audio-tools)
Obtaining dependency information for torchsde from https://files.pythonhosted.org/packages/dd/1f/b67ebd7e19ffe259f05d3cf4547326725c3113d640c277030be3e9998d6f/torchsde-0.2.6-py3-none-any.whl.metadata
Downloading torchsde-0.2.6-py3-none-any.whl.metadata (5.3 kB)
Collecting numpy (from torchvision)
Obtaining dependency information for numpy from https://files.pythonhosted.org/packages/6e/7f/94797cfe0263a30805f3074e535adfde02b885ac43d1e4dac85f82213b0b/numpy-1.23.5-cp311-cp311-macosx_10_9_x86_64.whl.metadata
Downloading numpy-1.23.5-cp311-cp311-macosx_10_9_x86_64.whl.metadata (2.3 kB)
Collecting torchlibrosa (from laion-clap==1.1.4->stable-audio-tools)
Obtaining dependency information for torchlibrosa from https://files.pythonhosted.org/packages/3e/af/ccf007edf442c3c0cd3a98be2c82bc99edc957c04436a759b6e1e01077e0/torchlibrosa-0.1.0-py3-none-any.whl.metadata
Downloading torchlibrosa-0.1.0-py3-none-any.whl.metadata (3.5 kB)
Collecting ftfy (from laion-clap==1.1.4->stable-audio-tools)
Obtaining dependency information for ftfy from https://files.pythonhosted.org/packages/ab/6e/81d47999aebc1b155f81eca4477a616a70f238a2549848c38983f3c22a82/ftfy-6.3.1-py3-none-any.whl.metadata
Downloading ftfy-6.3.1-py3-none-any.whl.metadata (7.3 kB)
Collecting braceexpand (from laion-clap==1.1.4->stable-audio-tools)
Obtaining dependency information for braceexpand from https://files.pythonhosted.org/packages/fa/93/e8c04e80e82391a6e51f218ca49720f64236bc824e92152a2633b74cf7ab/braceexpand-0.1.7-py2.py3-none-any.whl.metadata
Downloading braceexpand-0.1.7-py2.py3-none-any.whl.metadata (3.0 kB)
Collecting wget (from laion-clap==1.1.4->stable-audio-tools)
Downloading wget-3.2.zip (10 kB)
Preparing metadata (setup.py) ... ?25l- done
?25hCollecting llvmlite (from laion-clap==1.1.4->stable-audio-tools)
Obtaining dependency information for llvmlite from https://files.pythonhosted.org/packages/95/8c/de3276d773ab6ce3ad676df5fab5aac19696b2956319d65d7dd88fb10f19/llvmlite-0.43.0-cp311-cp311-macosx_10_9_x86_64.whl.metadata
Downloading llvmlite-0.43.0-cp311-cp311-macosx_10_9_x86_64.whl.metadata (4.8 kB)
Collecting scikit-learn (from laion-clap==1.1.4->stable-audio-tools)
Obtaining dependency information for scikit-learn from https://files.pythonhosted.org/packages/ff/91/609961972f694cb9520c4c3d201e377a26583e1eb83bc5a334c893729214/scikit_learn-1.5.2-cp311-cp311-macosx_10_9_x86_64.whl.metadata
Downloading scikit_learn-1.5.2-cp311-cp311-macosx_10_9_x86_64.whl.metadata (13 kB)
Collecting h5py (from laion-clap==1.1.4->stable-audio-tools)
Obtaining dependency information for h5py from https://files.pythonhosted.org/packages/33/61/c463dc5fc02fbe019566d067a9d18746cd3c664f29c9b8b3c3f9ed025365/h5py-3.12.1-cp311-cp311-macosx_10_9_x86_64.whl.metadata
Downloading h5py-3.12.1-cp311-cp311-macosx_10_9_x86_64.whl.metadata (2.5 kB)
Collecting regex (from laion-clap==1.1.4->stable-audio-tools)
Obtaining dependency information for regex from https://files.pythonhosted.org/packages/34/4c/8f8e631fcdc2ff978609eaeef1d6994bf2f028b59d9ac67640ed051f1218/regex-2024.11.6-cp311-cp311-macosx_10_9_x86_64.whl.metadata
Downloading regex-2024.11.6-cp311-cp311-macosx_10_9_x86_64.whl.metadata (40 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/40.5 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 40.5/40.5 kB 1.7 MB/s eta 0:00:00
?25h
Collecting progressbar (from laion-clap==1.1.4->stable-audio-tools)
Downloading progressbar-2.5.tar.gz (10 kB)
Preparing metadata (setup.py) ... ?25l-
done
?25hRequirement already satisfied: python-dateutil>=2.8.2 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from pandas==2.0.2->stable-audio-tools) (2.9.0.post0)
Requirement already satisfied: pytz>=2020.1 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from pandas==2.0.2->stable-audio-tools) (2024.2)
Requirement already satisfied: tzdata>=2022.1 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from pandas==2.0.2->stable-audio-tools) (2024.2)
Collecting argparse (from prefigure==0.0.9->stable-audio-tools)
Obtaining dependency information for argparse from https://files.pythonhosted.org/packages/f2/94/3af39d34be01a24a6e65433d19e107099374224905f1e0cc6bbe1fd22a2f/argparse-1.4.0-py2.py3-none-any.whl.metadata
Downloading argparse-1.4.0-py2.py3-none-any.whl.metadata (2.8 kB)
Collecting configparser (from prefigure==0.0.9->stable-audio-tools)
Obtaining dependency information for configparser from https://files.pythonhosted.org/packages/ee/df/1514580907b0bac0970415e5e24ef96a9c1fa71dcf2aa0139045b58fae9a/configparser-7.1.0-py3-none-any.whl.metadata
Downloading configparser-7.1.0-py3-none-any.whl.metadata (5.4 kB)
Collecting gin-config (from prefigure==0.0.9->stable-audio-tools)
Obtaining dependency information for gin-config from https://files.pythonhosted.org/packages/11/8f/9f1894efa1bb15e98613244b24dfbacfe2309e0ac3cfc27d4c608c2270d2/gin_config-0.5.0-py3-none-any.whl.metadata
Downloading gin_config-0.5.0-py3-none-any.whl.metadata (2.9 kB)
Requirement already satisfied: PyYAML>=5.4 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from pytorch-lightning==2.1.0->stable-audio-tools) (6.0.2)
Requirement already satisfied: packaging>=20.0 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from pytorch-lightning==2.1.0->stable-audio-tools) (24.1)
Collecting lightning-utilities>=0.8.0 (from pytorch-lightning==2.1.0->stable-audio-tools)
Obtaining dependency information for lightning-utilities>=0.8.0 from https://files.pythonhosted.org/packages/2e/5d/4c4672025c23a305231a81bf492f65aa3ea0965a89f9ca369a9ee7d47fd9/lightning_utilities-0.11.8-py3-none-any.whl.metadata
Downloading lightning_utilities-0.11.8-py3-none-any.whl.metadata (5.2 kB)
Requirement already satisfied: requests in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from v-diffusion-pytorch==0.0.2->stable-audio-tools) (2.32.3)
Requirement already satisfied: Click!=8.0.0,>=7.0 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from wandb==0.15.4->stable-audio-tools) (8.1.7)
Collecting GitPython!=3.1.29,>=1.0.0 (from wandb==0.15.4->stable-audio-tools)
Obtaining dependency information for GitPython!=3.1.29,>=1.0.0 from https://files.pythonhosted.org/packages/e9/bd/cc3a402a6439c15c3d4294333e13042b915bbeab54edc457c723931fed3f/GitPython-3.1.43-py3-none-any.whl.metadata
Downloading GitPython-3.1.43-py3-none-any.whl.metadata (13 kB)
Requirement already satisfied: psutil>=5.0.0 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from wandb==0.15.4->stable-audio-tools) (6.1.0)
Collecting sentry-sdk>=1.0.0 (from wandb==0.15.4->stable-audio-tools)
Obtaining dependency information for sentry-sdk>=1.0.0 from https://files.pythonhosted.org/packages/76/9b/2d512efdb0de203d1f0312fae53433c3009ba70b0078421d25baaedc960a/sentry_sdk-2.18.0-py2.py3-none-any.whl.metadata
Downloading sentry_sdk-2.18.0-py2.py3-none-any.whl.metadata (9.9 kB)
Collecting docker-pycreds>=0.4.0 (from wandb==0.15.4->stable-audio-tools)
Obtaining dependency information for docker-pycreds>=0.4.0 from https://files.pythonhosted.org/packages/f5/e8/f6bd1eee09314e7e6dee49cbe2c5e22314ccdb38db16c9fc72d2fa80d054/docker_pycreds-0.4.0-py2.py3-none-any.whl.metadata
Downloading docker_pycreds-0.4.0-py2.py3-none-any.whl.metadata (1.8 kB)
Collecting pathtools (from wandb==0.15.4->stable-audio-tools)
Using cached pathtools-0.1.2.tar.gz (11 kB)
Preparing metadata (setup.py) ... ?25l-
done
?25hCollecting setproctitle (from wandb==0.15.4->stable-audio-tools)
Obtaining dependency information for setproctitle from https://files.pythonhosted.org/packages/ff/5d/77edf4c29c8d6728b49d3f0abb22159bb9c0c4ddebd721c09486b34985c8/setproctitle-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl.metadata
Downloading setproctitle-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl.metadata (9.9 kB)
Requirement already satisfied: setuptools in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from wandb==0.15.4->stable-audio-tools) (65.5.0)
Collecting appdirs>=1.4.3 (from wandb==0.15.4->stable-audio-tools)
Obtaining dependency information for appdirs>=1.4.3 from https://files.pythonhosted.org/packages/3b/00/2344469e2084fb287c2e0b57b72910309874c3245463acd6cf5e3db69324/appdirs-1.4.4-py2.py3-none-any.whl.metadata
Downloading appdirs-1.4.4-py2.py3-none-any.whl.metadata (9.0 kB)
Collecting protobuf!=4.21.0,<5,>=3.19.0 (from wandb==0.15.4->stable-audio-tools)
Obtaining dependency information for protobuf!=4.21.0,<5,>=3.19.0 from https://files.pythonhosted.org/packages/51/49/d110f0a43beb365758a252203c43eaaad169fe7749da918869a8c991f726/protobuf-4.25.5-cp37-abi3-macosx_10_9_universal2.whl.metadata
Downloading protobuf-4.25.5-cp37-abi3-macosx_10_9_universal2.whl.metadata (541 bytes)
Collecting aiofiles<24.0,>=22.0 (from gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for aiofiles<24.0,>=22.0 from https://files.pythonhosted.org/packages/c5/19/5af6804c4cc0fed83f47bff6e413a98a36618e7d40185cd36e69737f3b0e/aiofiles-23.2.1-py3-none-any.whl.metadata
Downloading aiofiles-23.2.1-py3-none-any.whl.metadata (9.7 kB)
Collecting anyio<5.0,>=3.0 (from gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for anyio<5.0,>=3.0 from https://files.pythonhosted.org/packages/e4/f5/f2b75d2fc6f1a260f340f0e7c6a060f4dd2961cc16884ed851b0d18da06a/anyio-4.6.2.post1-py3-none-any.whl.metadata
Downloading anyio-4.6.2.post1-py3-none-any.whl.metadata (4.7 kB)
Collecting fastapi<1.0,>=0.115.2 (from gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for fastapi<1.0,>=0.115.2 from https://files.pythonhosted.org/packages/99/f6/af0d1f58f86002be0cf1e2665cdd6f7a4a71cdc8a7a9438cdc9e3b5375fe/fastapi-0.115.4-py3-none-any.whl.metadata
Downloading fastapi-0.115.4-py3-none-any.whl.metadata (27 kB)
Collecting ffmpy (from gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for ffmpy from https://files.pythonhosted.org/packages/ff/1e/db99aa669eee301966bc6c997d60a0240f9cecae63f044b2e5a5310e4bf7/ffmpy-0.4.0-py3-none-any.whl.metadata
Downloading ffmpy-0.4.0-py3-none-any.whl.metadata (2.9 kB)
Collecting gradio-client==1.4.2 (from gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for gradio-client==1.4.2 from https://files.pythonhosted.org/packages/e0/6f/9eb14d4e9ef366be2020063d91c4f608294969fcd7b9fcc48153c64b9776/gradio_client-1.4.2-py3-none-any.whl.metadata
Downloading gradio_client-1.4.2-py3-none-any.whl.metadata (7.1 kB)
Collecting httpx>=0.24.1 (from gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for httpx>=0.24.1 from https://files.pythonhosted.org/packages/56/95/9377bcb415797e44274b51d46e3249eba641711cf3348050f76ee7b15ffc/httpx-0.27.2-py3-none-any.whl.metadata
Downloading httpx-0.27.2-py3-none-any.whl.metadata (7.1 kB)
Collecting markupsafe~=2.0 (from gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for markupsafe~=2.0 from https://files.pythonhosted.org/packages/6b/cb/aed7a284c00dfa7c0682d14df85ad4955a350a21d2e3b06d8240497359bf/MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl.metadata
Using cached MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl.metadata (3.0 kB)
Collecting orjson~=3.0 (from gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for orjson~=3.0 from https://files.pythonhosted.org/packages/1e/25/c869a1fbd481dcb02c70032fd6a7243de7582bc48c7cae03d6f0985a11c0/orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl.metadata
Downloading orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl.metadata (50 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/50.8 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 50.8/50.8 kB 2.0 MB/s eta 0:00:00
?25h
Collecting pydantic>=2.0 (from gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for pydantic>=2.0 from https://files.pythonhosted.org/packages/df/e4/ba44652d562cbf0bf320e0f3810206149c8a4e99cdbf66da82e97ab53a15/pydantic-2.9.2-py3-none-any.whl.metadata
Downloading pydantic-2.9.2-py3-none-any.whl.metadata (149 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/149.4 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 92.2/149.4 kB 2.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 149.4/149.4 kB 2.3 MB/s eta 0:00:00
?25h
Collecting pydub (from gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for pydub from https://files.pythonhosted.org/packages/a6/53/d78dc063216e62fc55f6b2eebb447f6a4b0a59f55c8406376f76bf959b08/pydub-0.25.1-py2.py3-none-any.whl.metadata
Downloading pydub-0.25.1-py2.py3-none-any.whl.metadata (1.4 kB)
Collecting python-multipart==0.0.12 (from gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for python-multipart==0.0.12 from https://files.pythonhosted.org/packages/f5/0b/c316262244abea7481f95f1e91d7575f3dfcf6455d56d1ffe9839c582eb1/python_multipart-0.0.12-py3-none-any.whl.metadata
Downloading python_multipart-0.0.12-py3-none-any.whl.metadata (1.9 kB)
Collecting ruff>=0.2.2 (from gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for ruff>=0.2.2 from https://files.pythonhosted.org/packages/20/ea/1f0a22a6bcdd3fc26c73f63a025d05bd565901b729d56bcb093c722a6c4c/ruff-0.7.3-py3-none-macosx_10_12_x86_64.whl.metadata
Downloading ruff-0.7.3-py3-none-macosx_10_12_x86_64.whl.metadata (25 kB)
Collecting safehttpx<1.0,>=0.1.1 (from gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for safehttpx<1.0,>=0.1.1 from https://files.pythonhosted.org/packages/df/f7/55cdeed5889f2076fdb125bc87bb7ab0f1715c84b0a4619c44833d890f60/safehttpx-0.1.1-py3-none-any.whl.metadata
Downloading safehttpx-0.1.1-py3-none-any.whl.metadata (4.1 kB)
Collecting semantic-version~=2.0 (from gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for semantic-version~=2.0 from https://files.pythonhosted.org/packages/6a/23/8146aad7d88f4fcb3a6218f41a60f6c2d4e3a72de72da1825dc7c8f7877c/semantic_version-2.10.0-py2.py3-none-any.whl.metadata
Downloading semantic_version-2.10.0-py2.py3-none-any.whl.metadata (9.7 kB)
Collecting starlette<1.0,>=0.40.0 (from gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for starlette<1.0,>=0.40.0 from https://files.pythonhosted.org/packages/54/43/f185bfd0ca1d213beb4293bed51d92254df23d8ceaf6c0e17146d508a776/starlette-0.41.2-py3-none-any.whl.metadata
Downloading starlette-0.41.2-py3-none-any.whl.metadata (6.0 kB)
Collecting tomlkit==0.12.0 (from gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for tomlkit==0.12.0 from https://files.pythonhosted.org/packages/68/4f/12207897848a653d03ebbf6775a29d949408ded5f99b2d87198bc5c93508/tomlkit-0.12.0-py3-none-any.whl.metadata
Downloading tomlkit-0.12.0-py3-none-any.whl.metadata (2.7 kB)
Collecting typer<1.0,>=0.12 (from gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for typer<1.0,>=0.12 from https://files.pythonhosted.org/packages/18/7e/c8bfa8cbcd3ea1d25d2beb359b5c5a3f4339a7e2e5d9e3ef3e29ba3ab3b9/typer-0.13.0-py3-none-any.whl.metadata
Downloading typer-0.13.0-py3-none-any.whl.metadata (15 kB)
Collecting uvicorn>=0.14.0 (from gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for uvicorn>=0.14.0 from https://files.pythonhosted.org/packages/eb/14/78bd0e95dd2444b6caacbca2b730671d4295ccb628ef58b81bee903629df/uvicorn-0.32.0-py3-none-any.whl.metadata
Downloading uvicorn-0.32.0-py3-none-any.whl.metadata (6.6 kB)
Collecting websockets<13.0,>=10.0 (from gradio-client==1.4.2->gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for websockets<13.0,>=10.0 from https://files.pythonhosted.org/packages/e4/2d/9a683359ad2ed11b2303a7a94800db19c61d33fa3bde271df09e99936022/websockets-12.0-cp311-cp311-macosx_10_9_x86_64.whl.metadata
Using cached websockets-12.0-cp311-cp311-macosx_10_9_x86_64.whl.metadata (6.6 kB)
Collecting aiobotocore<3.0.0,>=2.5.4 (from s3fs->stable-audio-tools)
Obtaining dependency information for aiobotocore<3.0.0,>=2.5.4 from https://files.pythonhosted.org/packages/a4/57/6402242dde160d9ef9903487b4277443dc3da04615f6c4d3b48564a8ab57/aiobotocore-2.15.2-py3-none-any.whl.metadata
Downloading aiobotocore-2.15.2-py3-none-any.whl.metadata (23 kB)
Collecting fsspec (from torch)
Obtaining dependency information for fsspec from https://files.pythonhosted.org/packages/c6/b2/454d6e7f0158951d8a78c2e1eb4f69ae81beb8dca5fee9809c6c99e9d0d0/fsspec-2024.10.0-py3-none-any.whl.metadata
Downloading fsspec-2024.10.0-py3-none-any.whl.metadata (11 kB)
Requirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from s3fs->stable-audio-tools) (3.10.10)
Requirement already satisfied: mpmath<1.4,>=1.1.0 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from sympy->torch) (1.3.0)
Collecting tokenizers<0.21,>=0.20 (from transformers->stable-audio-tools)
Obtaining dependency information for tokenizers<0.21,>=0.20 from https://files.pythonhosted.org/packages/c6/93/6742ef9206409d5ce1fdf44d5ca1687cdc3847ba0485424e2c731e6bcf67/tokenizers-0.20.3-cp311-cp311-macosx_10_12_x86_64.whl.metadata
Downloading tokenizers-0.20.3-cp311-cp311-macosx_10_12_x86_64.whl.metadata (6.7 kB)
Collecting botocore<1.35.37,>=1.35.16 (from aiobotocore<3.0.0,>=2.5.4->s3fs->stable-audio-tools)
Obtaining dependency information for botocore<1.35.37,>=1.35.16 from https://files.pythonhosted.org/packages/2a/60/056d58b606731f94fe395266c604ea9efcecc10e6857ceb9b10e6831d746/botocore-1.35.36-py3-none-any.whl.metadata
Downloading botocore-1.35.36-py3-none-any.whl.metadata (5.7 kB)
Collecting wrapt<2.0.0,>=1.10.10 (from aiobotocore<3.0.0,>=2.5.4->s3fs->stable-audio-tools)
Obtaining dependency information for wrapt<2.0.0,>=1.10.10 from https://files.pythonhosted.org/packages/fd/03/c188ac517f402775b90d6f312955a5e53b866c964b32119f2ed76315697e/wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl.metadata
Downloading wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl.metadata (6.6 kB)
Collecting aioitertools<1.0.0,>=0.5.1 (from aiobotocore<3.0.0,>=2.5.4->s3fs->stable-audio-tools)
Obtaining dependency information for aioitertools<1.0.0,>=0.5.1 from https://files.pythonhosted.org/packages/85/13/58b70a580de00893223d61de8fea167877a3aed97d4a5e1405c9159ef925/aioitertools-0.12.0-py3-none-any.whl.metadata
Downloading aioitertools-0.12.0-py3-none-any.whl.metadata (3.8 kB)
Requirement already satisfied: aiohappyeyeballs>=2.3.0 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs->stable-audio-tools) (2.4.3)
Requirement already satisfied: aiosignal>=1.1.2 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs->stable-audio-tools) (1.3.1)
Requirement already satisfied: attrs>=17.3.0 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs->stable-audio-tools) (24.2.0)
Requirement already satisfied: frozenlist>=1.1.1 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs->stable-audio-tools) (1.5.0)
Requirement already satisfied: multidict<7.0,>=4.5 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs->stable-audio-tools) (6.1.0)
Requirement already satisfied: yarl<2.0,>=1.12.0 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs->stable-audio-tools) (1.17.1)
Requirement already satisfied: idna>=2.8 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from anyio<5.0,>=3.0->gradio>=3.42.0->stable-audio-tools) (3.10)
Collecting sniffio>=1.1 (from anyio<5.0,>=3.0->gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for sniffio>=1.1 from https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl.metadata
Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB)
Collecting docstring-parser (from argbind>=0.3.7->descript-audio-codec==1.0.0->stable-audio-tools)
Obtaining dependency information for docstring-parser from https://files.pythonhosted.org/packages/d5/7c/e9fcff7623954d86bdc17782036cbf715ecab1bec4847c008557affe1ca8/docstring_parser-0.16-py3-none-any.whl.metadata
Downloading docstring_parser-0.16-py3-none-any.whl.metadata (3.0 kB)
Collecting pyloudnorm (from descript-audiotools>=0.7.2->descript-audio-codec==1.0.0->stable-audio-tools)
Obtaining dependency information for pyloudnorm from https://files.pythonhosted.org/packages/58/f5/6724805521ab4e723a12182f92374031032aff28a8a89dc8505c52b79032/pyloudnorm-0.1.1-py3-none-any.whl.metadata
Downloading pyloudnorm-0.1.1-py3-none-any.whl.metadata (5.6 kB)
Collecting julius (from descript-audiotools>=0.7.2->descript-audio-codec==1.0.0->stable-audio-tools)
Downloading julius-0.2.7.tar.gz (59 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/59.6 kB ? eta -:--:--
━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.2/59.6 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 51.2/59.6 kB 742.8 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 59.6/59.6 kB 768.6 kB/s eta 0:00:00
?25h
Preparing metadata (setup.py) ... ?25l-
done
?25hCollecting rich (from descript-audiotools>=0.7.2->descript-audio-codec==1.0.0->stable-audio-tools)
Obtaining dependency information for rich from https://files.pythonhosted.org/packages/19/71/39c7c0d87f8d4e6c020a393182060eaefeeae6c01dab6a84ec346f2567df/rich-13.9.4-py3-none-any.whl.metadata
Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB)
Collecting pystoi (from descript-audiotools>=0.7.2->descript-audio-codec==1.0.0->stable-audio-tools)
Obtaining dependency information for pystoi from https://files.pythonhosted.org/packages/1a/22/60cd92bd3ec00948800984410f4cf5ded5bd8e9b715729f3642efe0edb3d/pystoi-0.4.1-py2.py3-none-any.whl.metadata
Downloading pystoi-0.4.1-py2.py3-none-any.whl.metadata (4.0 kB)
Collecting torch-stoi (from descript-audiotools>=0.7.2->descript-audio-codec==1.0.0->stable-audio-tools)
Obtaining dependency information for torch-stoi from https://files.pythonhosted.org/packages/a3/92/ead346e904390a53e71b5da2df7e7839abb16e967ba07fa15addf1f9f37c/torch_stoi-0.2.3-py3-none-any.whl.metadata
Downloading torch_stoi-0.2.3-py3-none-any.whl.metadata (3.6 kB)
Collecting flatten-dict (from descript-audiotools>=0.7.2->descript-audio-codec==1.0.0->stable-audio-tools)
Obtaining dependency information for flatten-dict from https://files.pythonhosted.org/packages/43/f5/ee39c6e92acc742c052f137b47c210cd0a1b72dcd3f98495528bb4d27761/flatten_dict-0.4.2-py2.py3-none-any.whl.metadata
Downloading flatten_dict-0.4.2-py2.py3-none-any.whl.metadata (9.2 kB)
Collecting markdown2 (from descript-audiotools>=0.7.2->descript-audio-codec==1.0.0->stable-audio-tools)
Obtaining dependency information for markdown2 from https://files.pythonhosted.org/packages/30/2b/8653ae6d18e20183fc6051fd2e10cd0c46e16a6b71eb34edef8d465dc969/markdown2-2.5.1-py2.py3-none-any.whl.metadata
Downloading markdown2-2.5.1-py2.py3-none-any.whl.metadata (2.2 kB)
Collecting randomname (from descript-audiotools>=0.7.2->descript-audio-codec==1.0.0->stable-audio-tools)
Downloading randomname-0.2.1.tar.gz (64 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/64.2 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 41.0/64.2 kB 1.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 64.2/64.2 kB 1.2 MB/s eta 0:00:00
?25h
Preparing metadata (setup.py) ... ?25l- done
?25hCollecting protobuf!=4.21.0,<5,>=3.19.0 (from wandb==0.15.4->stable-audio-tools)
Obtaining dependency information for protobuf!=4.21.0,<5,>=3.19.0 from https://files.pythonhosted.org/packages/32/27/1141a8232723dcb10a595cc0ce4321dcbbd5215300bf4acfc142343205bf/protobuf-3.19.6-py2.py3-none-any.whl.metadata
Downloading protobuf-3.19.6-py2.py3-none-any.whl.metadata (828 bytes)
Collecting tensorboard (from descript-audiotools>=0.7.2->descript-audio-codec==1.0.0->stable-audio-tools)
Obtaining dependency information for tensorboard from https://files.pythonhosted.org/packages/b1/de/021c1d407befb505791764ad2cbd56ceaaa53a746baed01d2e2143f05f18/tensorboard-2.18.0-py3-none-any.whl.metadata
Downloading tensorboard-2.18.0-py3-none-any.whl.metadata (1.6 kB)
Requirement already satisfied: six>=1.4.0 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from docker-pycreds>=0.4.0->wandb==0.15.4->stable-audio-tools) (1.16.0)
INFO: pip is looking at multiple versions of fsspec[http] to determine which version is compatible with other requirements. This could take a while.
Collecting gitdb<5,>=4.0.1 (from GitPython!=3.1.29,>=1.0.0->wandb==0.15.4->stable-audio-tools)
Obtaining dependency information for gitdb<5,>=4.0.1 from https://files.pythonhosted.org/packages/fd/5b/8f0c4a5bb9fd491c277c21eff7ccae71b47d43c4446c9d0c6cff2fe8c2c4/gitdb-4.0.11-py3-none-any.whl.metadata
Using cached gitdb-4.0.11-py3-none-any.whl.metadata (1.2 kB)
Requirement already satisfied: certifi in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from httpx>=0.24.1->gradio>=3.42.0->stable-audio-tools) (2024.8.30)
Collecting httpcore==1.* (from httpx>=0.24.1->gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for httpcore==1.* from https://files.pythonhosted.org/packages/06/89/b161908e2f51be56568184aeb4a880fd287178d176fd1c860d2217f41106/httpcore-1.0.6-py3-none-any.whl.metadata
Downloading httpcore-1.0.6-py3-none-any.whl.metadata (21 kB)
Collecting h11<0.15,>=0.13 (from httpcore==1.*->httpx>=0.24.1->gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for h11<0.15,>=0.13 from https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl.metadata
Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB)
Collecting audioread>=2.1.9 (from librosa>=0.8.1->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for audioread>=2.1.9 from https://files.pythonhosted.org/packages/57/8d/30aa32745af16af0a9a650115fbe81bde7c610ed5c21b381fca0196f3a7f/audioread-3.0.1-py3-none-any.whl.metadata
Using cached audioread-3.0.1-py3-none-any.whl.metadata (8.4 kB)
Collecting joblib>=0.14 (from librosa>=0.8.1->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for joblib>=0.14 from https://files.pythonhosted.org/packages/91/29/df4b9b42f2be0b623cbd5e2140cafcaa2bef0759a00b7b70104dcfe2fb51/joblib-1.4.2-py3-none-any.whl.metadata
Downloading joblib-1.4.2-py3-none-any.whl.metadata (5.4 kB)
Requirement already satisfied: decorator>=4.3.0 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from librosa>=0.8.1->aeiou==0.0.20->stable-audio-tools) (5.1.1)
Collecting numba>=0.51.0 (from librosa>=0.8.1->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for numba>=0.51.0 from https://files.pythonhosted.org/packages/98/ad/df18d492a8f00d29a30db307904b9b296e37507034eedb523876f3a2e13e/numba-0.60.0-cp311-cp311-macosx_10_9_x86_64.whl.metadata
Downloading numba-0.60.0-cp311-cp311-macosx_10_9_x86_64.whl.metadata (2.7 kB)
INFO: pip is looking at multiple versions of librosa to determine which version is compatible with other requirements. This could take a while.
Collecting librosa>=0.8.1 (from aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for librosa>=0.8.1 from https://files.pythonhosted.org/packages/74/d4/cd10c82398f3b39bbf60a300e09c931bdf6844f3f2fba9ab2b5981501f9f/librosa-0.10.2-py3-none-any.whl.metadata
Downloading librosa-0.10.2-py3-none-any.whl.metadata (8.6 kB)
Obtaining dependency information for librosa>=0.8.1 from https://files.pythonhosted.org/packages/e2/a2/4f639c1168d7aada749a896afb4892a831e2041bebdcf636aebfe9e86556/librosa-0.10.1-py3-none-any.whl.metadata
Using cached librosa-0.10.1-py3-none-any.whl.metadata (8.3 kB)
Obtaining dependency information for librosa>=0.8.1 from https://files.pythonhosted.org/packages/5c/26/e1127810de8b60a58bfa682f858fd7ba36667d29c0b9ad3b6ff10d6cb944/librosa-0.10.0.post2-py3-none-any.whl.metadata
Downloading librosa-0.10.0.post2-py3-none-any.whl.metadata (8.3 kB)
Obtaining dependency information for librosa>=0.8.1 from https://files.pythonhosted.org/packages/f2/fc/5f30aea01532961bab043775258b06484f2a57530a88940e4cc3aea4f1f1/librosa-0.10.0.post1-py3-none-any.whl.metadata
Downloading librosa-0.10.0.post1-py3-none-any.whl.metadata (8.3 kB)
Obtaining dependency information for librosa>=0.8.1 from https://files.pythonhosted.org/packages/bc/2e/80370da514096c6190f8913668198380ea09c2d252cfa4e85a9c096d3b40/librosa-0.10.0-py3-none-any.whl.metadata
Downloading librosa-0.10.0-py3-none-any.whl.metadata (8.3 kB)
Obtaining dependency information for librosa>=0.8.1 from https://files.pythonhosted.org/packages/e4/1c/23ef2fd02913d65d43dc7516fc829af709314a66c6f0bdc2e361fdcecc2d/librosa-0.9.2-py3-none-any.whl.metadata
Downloading librosa-0.9.2-py3-none-any.whl.metadata (8.2 kB)
Collecting resampy>=0.2.2 (from librosa>=0.8.1->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for resampy>=0.2.2 from https://files.pythonhosted.org/packages/4d/b9/3b00ac340a1aab3389ebcc52c779914a44aadf7b0cb7a3bf053195735607/resampy-0.4.3-py3-none-any.whl.metadata
Downloading resampy-0.4.3-py3-none-any.whl.metadata (3.0 kB)
Collecting pooch>=1.0 (from librosa>=0.8.1->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for pooch>=1.0 from https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl.metadata
Downloading pooch-1.8.2-py3-none-any.whl.metadata (10 kB)
Collecting annotated-types>=0.6.0 (from pydantic>=2.0->gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for annotated-types>=0.6.0 from https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl.metadata
Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB)
Collecting pydantic-core==2.23.4 (from pydantic>=2.0->gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for pydantic-core==2.23.4 from https://files.pythonhosted.org/packages/5d/30/890a583cd3f2be27ecf32b479d5d615710bb926d92da03e3f7838ff3e58b/pydantic_core-2.23.4-cp311-cp311-macosx_10_12_x86_64.whl.metadata
Downloading pydantic_core-2.23.4-cp311-cp311-macosx_10_12_x86_64.whl.metadata (6.6 kB)
Requirement already satisfied: charset-normalizer<4,>=2 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from requests->v-diffusion-pytorch==0.0.2->stable-audio-tools) (3.4.0)
Requirement already satisfied: urllib3<3,>=1.21.1 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from requests->v-diffusion-pytorch==0.0.2->stable-audio-tools) (2.2.3)
Collecting threadpoolctl>=3.1.0 (from scikit-learn->laion-clap==1.1.4->stable-audio-tools)
Obtaining dependency information for threadpoolctl>=3.1.0 from https://files.pythonhosted.org/packages/4b/2c/ffbf7a134b9ab11a67b0cf0726453cedd9c5043a4fe7a35d1cefa9a1bcfb/threadpoolctl-3.5.0-py3-none-any.whl.metadata
Downloading threadpoolctl-3.5.0-py3-none-any.whl.metadata (13 kB)
Collecting cffi>=1.0 (from soundfile<=0.10.2->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for cffi>=1.0 from https://files.pythonhosted.org/packages/6b/f4/927e3a8899e52a27fa57a48607ff7dc91a9ebe97399b357b85a0c7892e00/cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl.metadata
Downloading cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl.metadata (1.5 kB)
Collecting shellingham>=1.3.0 (from typer<1.0,>=0.12->gradio>=3.42.0->stable-audio-tools)
Obtaining dependency information for shellingham>=1.3.0 from https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl.metadata
Downloading shellingham-1.5.4-py2.py3-none-any.whl.metadata (3.5 kB)
Collecting contourpy>=1.2 (from bokeh->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for contourpy>=1.2 from https://files.pythonhosted.org/packages/b3/1f/9375917786cb39270b0ee6634536c0e22abf225825602688990d8f5c6c19/contourpy-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl.metadata
Downloading contourpy-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl.metadata (5.4 kB)
Requirement already satisfied: tornado>=6.2 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from bokeh->aeiou==0.0.20->stable-audio-tools) (6.4.1)
Collecting xyzservices>=2021.09.1 (from bokeh->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for xyzservices>=2021.09.1 from https://files.pythonhosted.org/packages/4c/d3/e07ce413d16ef64e885bea37551eac4c5ca3ddd440933f9c94594273d0d9/xyzservices-2024.9.0-py3-none-any.whl.metadata
Downloading xyzservices-2024.9.0-py3-none-any.whl.metadata (4.1 kB)
Requirement already satisfied: wcwidth in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from ftfy->laion-clap==1.1.4->stable-audio-tools) (0.2.13)
Collecting colorcet (from holoviews->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for colorcet from https://files.pythonhosted.org/packages/c6/c6/9963d588cc3d75d766c819e0377a168ef83cf3316a92769971527a1ad1de/colorcet-3.1.0-py3-none-any.whl.metadata
Downloading colorcet-3.1.0-py3-none-any.whl.metadata (6.3 kB)
Collecting panel>=1.0 (from holoviews->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for panel>=1.0 from https://files.pythonhosted.org/packages/2f/41/6e30b6b0cc0c18f8eb566e4f440e8127d9dad32bcaa70d38c8c44a21e62d/panel-1.5.3-py3-none-any.whl.metadata
Downloading panel-1.5.3-py3-none-any.whl.metadata (15 kB)
Collecting param<3.0,>=2.0 (from holoviews->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for param<3.0,>=2.0 from https://files.pythonhosted.org/packages/c5/7b/5593a40fcd0981bda85274bb3e622ac433a94ae1e11ef8639de362cfa7de/param-2.1.1-py3-none-any.whl.metadata
Downloading param-2.1.1-py3-none-any.whl.metadata (7.2 kB)
Collecting pyviz-comms>=2.1 (from holoviews->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for pyviz-comms>=2.1 from https://files.pythonhosted.org/packages/81/3e/5a36494314e4780362b15a7e190095eec68366a0d512b5b532607c213a26/pyviz_comms-3.0.3-py3-none-any.whl.metadata
Downloading pyviz_comms-3.0.3-py3-none-any.whl.metadata (7.7 kB)
Requirement already satisfied: jedi>=0.16 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from ipython->aeiou==0.0.20->stable-audio-tools) (0.19.1)
Requirement already satisfied: matplotlib-inline in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from ipython->aeiou==0.0.20->stable-audio-tools) (0.1.7)
Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from ipython->aeiou==0.0.20->stable-audio-tools) (3.0.48)
Requirement already satisfied: pygments>=2.4.0 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from ipython->aeiou==0.0.20->stable-audio-tools) (2.18.0)
Requirement already satisfied: stack-data in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from ipython->aeiou==0.0.20->stable-audio-tools) (0.6.3)
Requirement already satisfied: traitlets>=5.13.0 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from ipython->aeiou==0.0.20->stable-audio-tools) (5.14.3)
Requirement already satisfied: pexpect>4.3 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from ipython->aeiou==0.0.20->stable-audio-tools) (4.9.0)
Requirement already satisfied: jsonschema>2.4.0 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from jsonmerge->k-diffusion==0.1.1->stable-audio-tools) (4.23.0)
Collecting kornia-rs>=0.1.0 (from kornia->k-diffusion==0.1.1->stable-audio-tools)
Obtaining dependency information for kornia-rs>=0.1.0 from https://files.pythonhosted.org/packages/3a/d1/104e9f575c27679ffedf994e53e6ac39067a0e77b2ea0d1567d4738686ed/kornia_rs-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl.metadata
Downloading kornia_rs-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl.metadata (9.1 kB)
Collecting cycler>=0.10 (from matplotlib->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for cycler>=0.10 from https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl.metadata
Using cached cycler-0.12.1-py3-none-any.whl.metadata (3.8 kB)
Collecting fonttools>=4.22.0 (from matplotlib->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for fonttools>=4.22.0 from https://files.pythonhosted.org/packages/aa/2c/8b5d82fe2d9c7f260fb73121418f5e07d4e38c329ea3886a5b0e55586113/fonttools-4.54.1-cp311-cp311-macosx_10_9_universal2.whl.metadata
Downloading fonttools-4.54.1-cp311-cp311-macosx_10_9_universal2.whl.metadata (163 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/163.7 kB ? eta -:--:--
━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.2/163.7 kB ? eta -:--:--
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 30.7/163.7 kB 1.1 MB/s eta 0:00:01
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 30.7/163.7 kB 1.1 MB/s eta 0:00:01
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 30.7/163.7 kB 1.1 MB/s eta 0:00:01
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 30.7/163.7 kB 1.1 MB/s eta 0:00:01
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 30.7/163.7 kB 1.1 MB/s eta 0:00:01
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 30.7/163.7 kB 1.1 MB/s eta 0:00:01
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 30.7/163.7 kB 1.1 MB/s eta 0:00:01
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 30.7/163.7 kB 1.1 MB/s eta 0:00:01
━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.0/163.7 kB 85.1 kB/s eta 0:00:02
━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.0/163.7 kB 85.1 kB/s eta 0:00:02
━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.0/163.7 kB 85.1 kB/s eta 0:00:02
━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 61.4/163.7 kB 108.8 kB/s eta 0:00:01
━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 61.4/163.7 kB 108.8 kB/s eta 0:00:01
━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 61.4/163.7 kB 108.8 kB/s eta 0:00:01
━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 61.4/163.7 kB 108.8 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 71.7/163.7 kB 95.4 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 92.2/163.7 kB 122.0 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 112.6/163.7 kB 141.0 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 143.4/163.7 kB 172.5 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 163.7/163.7 kB 191.4 kB/s eta 0:00:00
?25h
Collecting kiwisolver>=1.3.1 (from matplotlib->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for kiwisolver>=1.3.1 from https://files.pythonhosted.org/packages/e5/20/8c75caed8f2462d63c7fd65e16c832b8f76cda331ac9e615e914ee80bac9/kiwisolver-1.4.7-cp311-cp311-macosx_10_9_x86_64.whl.metadata
Downloading kiwisolver-1.4.7-cp311-cp311-macosx_10_9_x86_64.whl.metadata (6.3 kB)
Collecting pyparsing>=2.3.1 (from matplotlib->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for pyparsing>=2.3.1 from https://files.pythonhosted.org/packages/be/ec/2eb3cd785efd67806c46c13a17339708ddc346cbb684eade7a6e6f79536a/pyparsing-3.2.0-py3-none-any.whl.metadata
Downloading pyparsing-3.2.0-py3-none-any.whl.metadata (5.0 kB)
Collecting tenacity>=6.2.0 (from plotly->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for tenacity>=6.2.0 from https://files.pythonhosted.org/packages/b6/cb/b86984bed139586d01532a587464b5805f12e397594f19f931c4c2fbfa61/tenacity-9.0.0-py3-none-any.whl.metadata
Downloading tenacity-9.0.0-py3-none-any.whl.metadata (1.2 kB)
Collecting imageio>=2.33 (from scikit-image->k-diffusion==0.1.1->stable-audio-tools)
Obtaining dependency information for imageio>=2.33 from https://files.pythonhosted.org/packages/4e/e7/26045404a30c8a200e960fb54fbaf4b73d12e58cd28e03b306b084253f4f/imageio-2.36.0-py3-none-any.whl.metadata
Downloading imageio-2.36.0-py3-none-any.whl.metadata (5.2 kB)
Collecting tifffile>=2022.8.12 (from scikit-image->k-diffusion==0.1.1->stable-audio-tools)
Obtaining dependency information for tifffile>=2022.8.12 from https://files.pythonhosted.org/packages/50/0a/435d5d7ec64d1c8b422ac9ebe42d2f3b2ac0b3f8a56f5c04dd0f3b7ba83c/tifffile-2024.9.20-py3-none-any.whl.metadata
Downloading tifffile-2024.9.20-py3-none-any.whl.metadata (32 kB)
Collecting lazy-loader>=0.4 (from scikit-image->k-diffusion==0.1.1->stable-audio-tools)
Obtaining dependency information for lazy-loader>=0.4 from https://files.pythonhosted.org/packages/83/60/d497a310bde3f01cb805196ac61b7ad6dc5dcf8dce66634dc34364b20b4f/lazy_loader-0.4-py3-none-any.whl.metadata
Downloading lazy_loader-0.4-py3-none-any.whl.metadata (7.6 kB)
Collecting trampoline>=0.1.2 (from torchsde->k-diffusion==0.1.1->stable-audio-tools)
Obtaining dependency information for trampoline>=0.1.2 from https://files.pythonhosted.org/packages/73/54/d2805324fb746d8da86d3844bee4f55c0cfd6c136de61b713772d44c5bea/trampoline-0.1.2-py3-none-any.whl.metadata
Downloading trampoline-0.1.2-py3-none-any.whl.metadata (10 kB)
Collecting pynndescent>=0.5 (from umap-learn->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for pynndescent>=0.5 from https://files.pythonhosted.org/packages/d2/53/d23a97e0a2c690d40b165d1062e2c4ccc796be458a1ce59f6ba030434663/pynndescent-0.5.13-py3-none-any.whl.metadata
Downloading pynndescent-0.5.13-py3-none-any.whl.metadata (6.8 kB)
Collecting jmespath<2.0.0,>=0.7.1 (from botocore<1.35.37,>=1.35.16->aiobotocore<3.0.0,>=2.5.4->s3fs->stable-audio-tools)
Obtaining dependency information for jmespath<2.0.0,>=0.7.1 from https://files.pythonhosted.org/packages/31/b4/b9b800c45527aadd64d5b442f9b932b00648617eb5d63d2c7a6587b7cafc/jmespath-1.0.1-py3-none-any.whl.metadata
Downloading jmespath-1.0.1-py3-none-any.whl.metadata (7.6 kB)
Collecting pycparser (from cffi>=1.0->soundfile<=0.10.2->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for pycparser from https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl.metadata
Downloading pycparser-2.22-py3-none-any.whl.metadata (943 bytes)
Collecting smmap<6,>=3.0.1 (from gitdb<5,>=4.0.1->GitPython!=3.1.29,>=1.0.0->wandb==0.15.4->stable-audio-tools)
Obtaining dependency information for smmap<6,>=3.0.1 from https://files.pythonhosted.org/packages/a7/a5/10f97f73544edcdef54409f1d839f6049a0d79df68adbc1ceb24d1aaca42/smmap-5.0.1-py3-none-any.whl.metadata
Using cached smmap-5.0.1-py3-none-any.whl.metadata (4.3 kB)
Requirement already satisfied: parso<0.9.0,>=0.8.3 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from jedi>=0.16->ipython->aeiou==0.0.20->stable-audio-tools) (0.8.4)
Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from jsonschema>2.4.0->jsonmerge->k-diffusion==0.1.1->stable-audio-tools) (2024.10.1)
Requirement already satisfied: referencing>=0.28.4 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from jsonschema>2.4.0->jsonmerge->k-diffusion==0.1.1->stable-audio-tools) (0.35.1)
Requirement already satisfied: rpds-py>=0.7.1 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from jsonschema>2.4.0->jsonmerge->k-diffusion==0.1.1->stable-audio-tools) (0.20.0)
Collecting bleach (from panel>=1.0->holoviews->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for bleach from https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl.metadata
Downloading bleach-6.2.0-py3-none-any.whl.metadata (30 kB)
Requirement already satisfied: linkify-it-py in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from panel>=1.0->holoviews->aeiou==0.0.20->stable-audio-tools) (2.0.3)
Collecting markdown (from panel>=1.0->holoviews->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for markdown from https://files.pythonhosted.org/packages/3f/08/83871f3c50fc983b88547c196d11cf8c3340e37c32d2e9d6152abe2c61f7/Markdown-3.7-py3-none-any.whl.metadata
Downloading Markdown-3.7-py3-none-any.whl.metadata (7.0 kB)
Requirement already satisfied: markdown-it-py in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from panel>=1.0->holoviews->aeiou==0.0.20->stable-audio-tools) (3.0.0)
Requirement already satisfied: mdit-py-plugins in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from panel>=1.0->holoviews->aeiou==0.0.20->stable-audio-tools) (0.4.2)
Requirement already satisfied: ptyprocess>=0.5 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from pexpect>4.3->ipython->aeiou==0.0.20->stable-audio-tools) (0.7.0)
Requirement already satisfied: platformdirs>=2.5.0 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from pooch>=1.0->librosa>=0.8.1->aeiou==0.0.20->stable-audio-tools) (4.3.6)
Requirement already satisfied: propcache>=0.2.0 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from yarl<2.0,>=1.12.0->aiohttp!=4.0.0a0,!=4.0.0a1->s3fs->stable-audio-tools) (0.2.0)
Collecting future>=0.16.0 (from pyloudnorm->descript-audiotools>=0.7.2->descript-audio-codec==1.0.0->stable-audio-tools)
Obtaining dependency information for future>=0.16.0 from https://files.pythonhosted.org/packages/da/71/ae30dadffc90b9006d77af76b393cb9dfbfc9629f339fc1574a1c52e6806/future-1.0.0-py3-none-any.whl.metadata
Downloading future-1.0.0-py3-none-any.whl.metadata (4.0 kB)
Collecting fire (from randomname->descript-audiotools>=0.7.2->descript-audio-codec==1.0.0->stable-audio-tools)
Downloading fire-0.7.0.tar.gz (87 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/87.2 kB ? eta -:--:--
━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.2/87.2 kB ? eta -:--:--
━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 30.7/87.2 kB 1.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 30.7/87.2 kB 1.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 61.4/87.2 kB 470.6 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 87.2/87.2 kB 493.1 kB/s eta 0:00:00
?25h
Preparing metadata (setup.py) ... ?25l-
done
?25hRequirement already satisfied: executing>=1.2.0 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from stack-data->ipython->aeiou==0.0.20->stable-audio-tools) (2.1.0)
Requirement already satisfied: asttokens>=2.1.0 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from stack-data->ipython->aeiou==0.0.20->stable-audio-tools) (2.4.1)
Requirement already satisfied: pure-eval in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from stack-data->ipython->aeiou==0.0.20->stable-audio-tools) (0.2.3)
Collecting absl-py>=0.4 (from tensorboard->descript-audiotools>=0.7.2->descript-audio-codec==1.0.0->stable-audio-tools)
Obtaining dependency information for absl-py>=0.4 from https://files.pythonhosted.org/packages/a2/ad/e0d3c824784ff121c03cc031f944bc7e139a8f1870ffd2845cc2dd76f6c4/absl_py-2.1.0-py3-none-any.whl.metadata
Downloading absl_py-2.1.0-py3-none-any.whl.metadata (2.3 kB)
Collecting grpcio>=1.48.2 (from tensorboard->descript-audiotools>=0.7.2->descript-audio-codec==1.0.0->stable-audio-tools)
Obtaining dependency information for grpcio>=1.48.2 from https://files.pythonhosted.org/packages/b3/9a/e1956f7ca582a22dd1f17b9e26fcb8229051b0ce6d33b47227824772feec/grpcio-1.67.1-cp311-cp311-macosx_10_9_universal2.whl.metadata
Downloading grpcio-1.67.1-cp311-cp311-macosx_10_9_universal2.whl.metadata (3.9 kB)
Collecting tensorboard-data-server<0.8.0,>=0.7.0 (from tensorboard->descript-audiotools>=0.7.2->descript-audio-codec==1.0.0->stable-audio-tools)
Obtaining dependency information for tensorboard-data-server<0.8.0,>=0.7.0 from https://files.pythonhosted.org/packages/b7/85/dabeaf902892922777492e1d253bb7e1264cadce3cea932f7ff599e53fea/tensorboard_data_server-0.7.2-py3-none-macosx_10_9_x86_64.whl.metadata
Downloading tensorboard_data_server-0.7.2-py3-none-macosx_10_9_x86_64.whl.metadata (1.1 kB)
Collecting werkzeug>=1.0.1 (from tensorboard->descript-audiotools>=0.7.2->descript-audio-codec==1.0.0->stable-audio-tools)
Obtaining dependency information for werkzeug>=1.0.1 from https://files.pythonhosted.org/packages/52/24/ab44c871b0f07f491e5d2ad12c9bd7358e527510618cb1b803a88e986db1/werkzeug-3.1.3-py3-none-any.whl.metadata
Downloading werkzeug-3.1.3-py3-none-any.whl.metadata (3.7 kB)
Requirement already satisfied: mdurl~=0.1 in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from markdown-it-py->panel>=1.0->holoviews->aeiou==0.0.20->stable-audio-tools) (0.1.2)
Collecting webencodings (from bleach->panel>=1.0->holoviews->aeiou==0.0.20->stable-audio-tools)
Obtaining dependency information for webencodings from https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl.metadata
Downloading webencodings-0.5.1-py2.py3-none-any.whl.metadata (2.1 kB)
Collecting termcolor (from fire->randomname->descript-audiotools>=0.7.2->descript-audio-codec==1.0.0->stable-audio-tools)
Obtaining dependency information for termcolor from https://files.pythonhosted.org/packages/7f/be/df630c387a0a054815d60be6a97eb4e8f17385d5d6fe660e1c02750062b4/termcolor-2.5.0-py3-none-any.whl.metadata
Downloading termcolor-2.5.0-py3-none-any.whl.metadata (6.1 kB)
Requirement already satisfied: uc-micro-py in /Users/Ilaria/repos/music-language-tutorial/venv/lib/python3.11/site-packages (from linkify-it-py->panel>=1.0->holoviews->aeiou==0.0.20->stable-audio-tools) (1.0.3)
Downloading torchaudio-2.2.2-cp311-cp311-macosx_10_13_x86_64.whl (3.4 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/3.4 MB ? eta -:--:--
╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.1/3.4 MB 1.9 MB/s eta 0:00:02
━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.1/3.4 MB 1.9 MB/s eta 0:00:02
━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.2/3.4 MB 1.9 MB/s eta 0:00:02
━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.3/3.4 MB 2.1 MB/s eta 0:00:02
━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.3/3.4 MB 2.1 MB/s eta 0:00:02
━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.3/3.4 MB 2.1 MB/s eta 0:00:02
━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.3/3.4 MB 1.3 MB/s eta 0:00:03
━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.4/3.4 MB 1.4 MB/s eta 0:00:03
━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.6/3.4 MB 1.6 MB/s eta 0:00:02
━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.7/3.4 MB 1.8 MB/s eta 0:00:02
━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.9/3.4 MB 2.0 MB/s eta 0:00:02
━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/3.4 MB 2.2 MB/s eta 0:00:02
━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/3.4 MB 2.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/3.4 MB 2.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/3.4 MB 2.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 2.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 2.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 2.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 2.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 2.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 2.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 2.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 2.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 2.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 2.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 2.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 1.2 MB/s eta 0:00:02
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 1.2 MB/s eta 0:00:02
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 1.2 MB/s eta 0:00:02
━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 1.2 MB/s eta 0:00:02
━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 1.2 MB/s eta 0:00:02
━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 1.2 MB/s eta 0:00:02
━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 1.2 MB/s eta 0:00:02
━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 1.2 MB/s eta 0:00:02
━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 1.2 MB/s eta 0:00:02
━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 1.2 MB/s eta 0:00:02
━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/3.4 MB 918.6 kB/s eta 0:00:03
━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 1.4/3.4 MB 913.8 kB/s eta 0:00:03
━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 1.4/3.4 MB 925.0 kB/s eta 0:00:03
━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 1.4/3.4 MB 904.5 kB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 1.5/3.4 MB 949.0 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 1.7/3.4 MB 995.1 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 1.8/3.4 MB 1.0 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 1.8/3.4 MB 1.1 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 1.8/3.4 MB 1.1 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 1.9/3.4 MB 1.0 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 1.9/3.4 MB 1.0 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 2.1/3.4 MB 1.1 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 2.2/3.4 MB 1.1 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━ 2.3/3.4 MB 1.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 2.4/3.4 MB 1.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 2.6/3.4 MB 1.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 2.7/3.4 MB 1.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 2.9/3.4 MB 1.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 3.0/3.4 MB 1.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 3.2/3.4 MB 1.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 3.3/3.4 MB 1.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 3.3/3.4 MB 1.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 3.3/3.4 MB 1.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 3.4/3.4 MB 1.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.4/3.4 MB 1.4 MB/s eta 0:00:00
?25hDownloading torchvision-0.17.2-cp311-cp311-macosx_10_13_x86_64.whl (1.7 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.7 MB ? eta -:--:--
━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.1/1.7 MB 4.5 MB/s eta 0:00:01
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.3/1.7 MB 4.5 MB/s eta 0:00:01
━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.5/1.7 MB 4.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 0.7/1.7 MB 4.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 0.9/1.7 MB 4.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 1.1/1.7 MB 4.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 1.2/1.7 MB 4.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 1.4/1.7 MB 4.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 1.6/1.7 MB 4.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 1.6/1.7 MB 4.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 1.6/1.7 MB 4.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 3.8 MB/s eta 0:00:00
?25h
Downloading stable_audio_tools-0.0.16-py3-none-any.whl (121 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/121.1 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 112.6/121.1 kB 3.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 121.1/121.1 kB 2.8 MB/s eta 0:00:00
?25h
Downloading einops-0.7.0-py3-none-any.whl (44 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/44.6 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 44.6/44.6 kB 2.5 MB/s eta 0:00:00
?25hDownloading aeiou-0.0.20-py3-none-any.whl (42 kB)
?25l
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/42.5 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.5/42.5 kB 3.5 MB/s eta 0:00:00
?25h
Downloading alias_free_torch-0.0.6-py3-none-any.whl (9.7 kB)
Downloading auraloss-0.4.0-py3-none-any.whl (16 kB)
Downloading descript_audio_codec-1.0.0-py3-none-any.whl (26 kB)
Downloading einops_exts-0.0.4-py3-none-any.whl (3.9 kB)
Downloading ema_pytorch-0.2.3-py3-none-any.whl (4.4 kB)
Downloading importlib_resources-5.12.0-py3-none-any.whl (36 kB)
Downloading k_diffusion-0.1.1-py3-none-any.whl (33 kB)
Downloading laion_clap-1.1.4-py3-none-any.whl (1.5 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.5 MB ? eta -:--:--
━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.2/1.5 MB 5.5 MB/s eta 0:00:01
━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.2/1.5 MB 5.5 MB/s eta 0:00:01
━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.2/1.5 MB 5.5 MB/s eta 0:00:01
━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.3/1.5 MB 2.0 MB/s eta 0:00:01
━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.5/1.5 MB 2.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 0.8/1.5 MB 3.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━ 1.0/1.5 MB 3.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 1.2/1.5 MB 3.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 1.5/1.5 MB 4.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/1.5 MB 4.0 MB/s eta 0:00:00
?25h
Downloading local_attention-1.8.6-py3-none-any.whl (8.1 kB)
Downloading numpy-1.23.5-cp311-cp311-macosx_10_9_x86_64.whl (18.1 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/18.1 MB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.2/18.1 MB 7.1 MB/s eta 0:00:03
╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.4/18.1 MB 6.2 MB/s eta 0:00:03
╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.4/18.1 MB 6.2 MB/s eta 0:00:03
╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.4/18.1 MB 6.2 MB/s eta 0:00:03
━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.5/18.1 MB 2.5 MB/s eta 0:00:07
━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.6/18.1 MB 2.9 MB/s eta 0:00:07
━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.9/18.1 MB 3.5 MB/s eta 0:00:05
━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/18.1 MB 3.8 MB/s eta 0:00:05
━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/18.1 MB 4.1 MB/s eta 0:00:05
━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/18.1 MB 4.3 MB/s eta 0:00:04
━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/18.1 MB 4.5 MB/s eta 0:00:04
━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/18.1 MB 4.7 MB/s eta 0:00:04
━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/18.1 MB 4.9 MB/s eta 0:00:04
━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.6/18.1 MB 5.0 MB/s eta 0:00:04
━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.9/18.1 MB 5.1 MB/s eta 0:00:03
━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/18.1 MB 5.2 MB/s eta 0:00:03
━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/18.1 MB 5.2 MB/s eta 0:00:03
━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/18.1 MB 4.6 MB/s eta 0:00:04
━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/18.1 MB 4.5 MB/s eta 0:00:04
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.5/18.1 MB 4.7 MB/s eta 0:00:04
━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.8/18.1 MB 4.8 MB/s eta 0:00:03
━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.1/18.1 MB 4.9 MB/s eta 0:00:03
━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.4/18.1 MB 5.1 MB/s eta 0:00:03
━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/18.1 MB 5.2 MB/s eta 0:00:03
━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.9/18.1 MB 5.2 MB/s eta 0:00:03
━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.3/18.1 MB 5.3 MB/s eta 0:00:03
━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.6/18.1 MB 5.4 MB/s eta 0:00:03
━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/18.1 MB 5.5 MB/s eta 0:00:03
━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/18.1 MB 5.6 MB/s eta 0:00:03
━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/18.1 MB 5.7 MB/s eta 0:00:03
━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/18.1 MB 5.7 MB/s eta 0:00:03
━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 6.4/18.1 MB 5.2 MB/s eta 0:00:03
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 6.7/18.1 MB 5.3 MB/s eta 0:00:03
━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 7.0/18.1 MB 5.4 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 7.3/18.1 MB 5.5 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 7.7/18.1 MB 5.6 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 8.0/18.1 MB 5.6 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 8.4/18.1 MB 5.7 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 8.6/18.1 MB 5.8 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 8.8/18.1 MB 5.8 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 9.2/18.1 MB 5.8 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 9.6/18.1 MB 5.9 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 9.9/18.1 MB 6.0 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 10.2/18.1 MB 6.0 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 10.6/18.1 MB 6.1 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 11.0/18.1 MB 6.6 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 11.4/18.1 MB 6.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━ 11.9/18.1 MB 6.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━ 12.3/18.1 MB 6.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 12.7/18.1 MB 7.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 13.1/18.1 MB 7.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 13.5/18.1 MB 7.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 14.0/18.1 MB 7.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 14.4/18.1 MB 8.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 14.8/18.1 MB 8.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 15.2/18.1 MB 8.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 15.6/18.1 MB 8.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 16.1/18.1 MB 8.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 16.6/18.1 MB 9.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 17.0/18.1 MB 9.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 17.4/18.1 MB 9.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 17.9/18.1 MB 9.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 18.1/18.1 MB 9.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.1/18.1 MB 9.2 MB/s eta 0:00:00
?25h
Downloading pandas-2.0.2-cp311-cp311-macosx_10_9_x86_64.whl (11.6 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/11.6 MB ? eta -:--:--
━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.4/11.6 MB 12.4 MB/s eta 0:00:01
━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.9/11.6 MB 11.6 MB/s eta 0:00:01
━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/11.6 MB 11.7 MB/s eta 0:00:01
━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/11.6 MB 6.9 MB/s eta 0:00:02
━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/11.6 MB 7.5 MB/s eta 0:00:02
━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.9/11.6 MB 8.1 MB/s eta 0:00:02
━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/11.6 MB 8.2 MB/s eta 0:00:02
━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.6/11.6 MB 8.0 MB/s eta 0:00:02
━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/11.6 MB 8.3 MB/s eta 0:00:02
━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/11.6 MB 7.9 MB/s eta 0:00:02
━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.7/11.6 MB 8.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 4.1/11.6 MB 8.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 4.3/11.6 MB 8.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 4.7/11.6 MB 8.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 5.2/11.6 MB 8.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 5.4/11.6 MB 8.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 5.9/11.6 MB 8.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 6.3/11.6 MB 8.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 6.7/11.6 MB 8.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 7.2/11.6 MB 9.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 7.3/11.6 MB 9.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 7.3/11.6 MB 9.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 7.3/11.6 MB 9.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 7.3/11.6 MB 9.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━ 7.6/11.6 MB 7.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 8.2/11.6 MB 7.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 8.4/11.6 MB 7.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 8.9/11.6 MB 7.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 9.4/11.6 MB 8.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 9.4/11.6 MB 8.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 9.4/11.6 MB 8.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 9.4/11.6 MB 8.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 9.4/11.6 MB 8.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 9.4/11.6 MB 8.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 9.4/11.6 MB 8.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 9.9/11.6 MB 6.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 10.4/11.6 MB 7.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10.5/11.6 MB 6.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 11.0/11.6 MB 6.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 11.5/11.6 MB 7.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 11.6/11.6 MB 7.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11.6/11.6 MB 7.0 MB/s eta 0:00:00
?25h
Downloading pedalboard-0.7.4-cp311-cp311-macosx_10_13_x86_64.whl (2.7 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.7 MB ? eta -:--:--
━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.6/2.7 MB 16.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/2.7 MB 15.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 1.3/2.7 MB 10.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━ 1.8/2.7 MB 11.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 2.1/2.7 MB 11.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 2.3/2.7 MB 9.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 2.7/2.7 MB 10.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.7/2.7 MB 9.6 MB/s eta 0:00:00
?25h
Downloading prefigure-0.0.9-py3-none-any.whl (7.7 kB)
Downloading pytorch_lightning-2.1.0-py3-none-any.whl (774 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/774.6 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/774.6 kB ? eta -:--:--
━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 30.7/774.6 kB 1.6 MB/s eta 0:00:01
━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 112.6/774.6 kB 2.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 614.4/774.6 kB 6.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 774.6/774.6 kB 5.7 MB/s eta 0:00:00
?25h
Downloading PyWavelets-1.4.1-cp311-cp311-macosx_10_13_x86_64.whl (4.3 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/4.3 MB ? eta -:--:--
━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.3/4.3 MB 7.2 MB/s eta 0:00:01
━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.5/4.3 MB 6.7 MB/s eta 0:00:01
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.8/4.3 MB 7.3 MB/s eta 0:00:01
━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/4.3 MB 7.2 MB/s eta 0:00:01
━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/4.3 MB 7.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 1.8/4.3 MB 7.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 2.0/4.3 MB 7.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 2.1/4.3 MB 7.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 2.1/4.3 MB 7.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 2.1/4.3 MB 7.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 2.1/4.3 MB 7.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 2.4/4.3 MB 4.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 2.7/4.3 MB 5.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 3.1/4.3 MB 5.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 3.4/4.3 MB 5.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 3.4/4.3 MB 5.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 3.4/4.3 MB 5.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 3.4/4.3 MB 5.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 3.4/4.3 MB 5.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 3.4/4.3 MB 5.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 3.4/4.3 MB 5.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 3.6/4.3 MB 4.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 3.6/4.3 MB 4.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 3.7/4.3 MB 3.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 3.9/4.3 MB 3.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 4.0/4.3 MB 3.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 4.1/4.3 MB 3.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 4.3/4.3 MB 3.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.3/4.3 MB 3.8 MB/s eta 0:00:00
?25h
Downloading sentencepiece-0.1.99-cp311-cp311-macosx_10_9_x86_64.whl (1.2 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.2 MB ? eta -:--:--
━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.1/1.2 MB 3.7 MB/s eta 0:00:01
━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.3/1.2 MB 3.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 0.4/1.2 MB 3.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 0.6/1.2 MB 3.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 0.8/1.2 MB 3.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 0.9/1.2 MB 3.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 1.1/1.2 MB 4.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 3.9 MB/s eta 0:00:00
?25h
Downloading torchmetrics-0.11.4-py3-none-any.whl (519 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/519.2 kB ? eta -:--:--
━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 122.9/519.2 kB 3.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 317.4/519.2 kB 4.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 481.3/519.2 kB 4.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 519.2/519.2 kB 4.0 MB/s eta 0:00:00
?25h
Downloading v_diffusion_pytorch-0.0.2-py3-none-any.whl (20 kB)
Downloading vector_quantize_pytorch-1.9.14-py3-none-any.whl (17 kB)
Downloading wandb-0.15.4-py3-none-any.whl (2.1 MB)
?25l
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.1 MB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.1 MB ? eta -:--:--
╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.1 MB 2.8 MB/s eta 0:00:01
━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.3/2.1 MB 4.6 MB/s eta 0:00:01
━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.4/2.1 MB 4.5 MB/s eta 0:00:01
━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.6/2.1 MB 4.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 0.9/2.1 MB 4.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 1.1/2.1 MB 4.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 1.2/2.1 MB 4.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 1.4/2.1 MB 4.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 1.7/2.1 MB 4.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 1.9/2.1 MB 4.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 2.1/2.1 MB 5.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/2.1 MB 4.8 MB/s eta 0:00:00
?25hDownloading webdataset-0.2.48-py3-none-any.whl (51 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/51.9 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 51.9/51.9 kB 3.8 MB/s eta 0:00:00
?25h
Downloading gradio-5.5.0-py3-none-any.whl (56.7 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/56.7 MB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.2/56.7 MB 6.1 MB/s eta 0:00:10
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.5/56.7 MB 6.0 MB/s eta 0:00:10
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.7/56.7 MB 5.9 MB/s eta 0:00:10
╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.9/56.7 MB 6.0 MB/s eta 0:00:10
╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/56.7 MB 6.1 MB/s eta 0:00:10
╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/56.7 MB 6.1 MB/s eta 0:00:10
━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/56.7 MB 6.1 MB/s eta 0:00:10
━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.9/56.7 MB 6.1 MB/s eta 0:00:10
━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.2/56.7 MB 6.1 MB/s eta 0:00:09
━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.4/56.7 MB 6.2 MB/s eta 0:00:09
━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.7/56.7 MB 6.3 MB/s eta 0:00:09
━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/56.7 MB 6.4 MB/s eta 0:00:09
━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.3/56.7 MB 6.4 MB/s eta 0:00:09
━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.6/56.7 MB 6.5 MB/s eta 0:00:09
━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.9/56.7 MB 6.6 MB/s eta 0:00:09
━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.1/56.7 MB 6.5 MB/s eta 0:00:09
━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/56.7 MB 6.6 MB/s eta 0:00:08
━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.8/56.7 MB 6.6 MB/s eta 0:00:08
━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.0/56.7 MB 6.7 MB/s eta 0:00:08
━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.3/56.7 MB 6.7 MB/s eta 0:00:08
━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.7/56.7 MB 6.8 MB/s eta 0:00:08
━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.0/56.7 MB 6.8 MB/s eta 0:00:08
━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.4/56.7 MB 6.9 MB/s eta 0:00:08
━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.7/56.7 MB 7.0 MB/s eta 0:00:08
━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.0/56.7 MB 7.0 MB/s eta 0:00:08
━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.4/56.7 MB 7.1 MB/s eta 0:00:07
━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.6/56.7 MB 7.1 MB/s eta 0:00:07
━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.0/56.7 MB 7.1 MB/s eta 0:00:07
━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.2/56.7 MB 7.1 MB/s eta 0:00:07
━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.5/56.7 MB 7.1 MB/s eta 0:00:07
━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.9/56.7 MB 7.2 MB/s eta 0:00:07
━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.2/56.7 MB 7.2 MB/s eta 0:00:07
━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.6/56.7 MB 7.3 MB/s eta 0:00:07
━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.0/56.7 MB 7.3 MB/s eta 0:00:07
━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.3/56.7 MB 7.4 MB/s eta 0:00:07
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.7/56.7 MB 7.5 MB/s eta 0:00:07
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11.1/56.7 MB 7.6 MB/s eta 0:00:06
━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11.5/56.7 MB 7.8 MB/s eta 0:00:06
━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11.8/56.7 MB 7.9 MB/s eta 0:00:06
━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.2/56.7 MB 8.0 MB/s eta 0:00:06
━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.6/56.7 MB 8.2 MB/s eta 0:00:06
━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.0/56.7 MB 8.3 MB/s eta 0:00:06
━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.4/56.7 MB 8.4 MB/s eta 0:00:06
━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.9/56.7 MB 8.5 MB/s eta 0:00:06
━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 14.2/56.7 MB 8.6 MB/s eta 0:00:05
━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 14.6/56.7 MB 8.7 MB/s eta 0:00:05
━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 15.1/56.7 MB 8.9 MB/s eta 0:00:05
━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 15.4/56.7 MB 9.0 MB/s eta 0:00:05
━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 15.9/56.7 MB 9.1 MB/s eta 0:00:05
━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.3/56.7 MB 9.2 MB/s eta 0:00:05
━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.7/56.7 MB 9.2 MB/s eta 0:00:05
━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.1/56.7 MB 9.3 MB/s eta 0:00:05
━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.6/56.7 MB 9.5 MB/s eta 0:00:05
━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.0/56.7 MB 9.6 MB/s eta 0:00:05
━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.5/56.7 MB 9.8 MB/s eta 0:00:04
━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.9/56.7 MB 9.9 MB/s eta 0:00:04
━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 19.3/56.7 MB 10.0 MB/s eta 0:00:04
━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 19.8/56.7 MB 10.2 MB/s eta 0:00:04
━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 20.2/56.7 MB 10.3 MB/s eta 0:00:04
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 20.7/56.7 MB 10.5 MB/s eta 0:00:04
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 21.2/56.7 MB 10.5 MB/s eta 0:00:04
━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 21.7/56.7 MB 10.7 MB/s eta 0:00:04
━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 22.1/56.7 MB 10.7 MB/s eta 0:00:04
━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 22.7/56.7 MB 10.9 MB/s eta 0:00:04
━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 23.2/56.7 MB 11.0 MB/s eta 0:00:04
━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 23.6/56.7 MB 11.1 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 24.1/56.7 MB 11.2 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 24.6/56.7 MB 11.4 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 25.1/56.7 MB 11.5 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 25.6/56.7 MB 11.5 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 26.2/56.7 MB 11.7 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 26.7/56.7 MB 11.9 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 27.2/56.7 MB 12.0 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 27.8/56.7 MB 12.2 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 28.3/56.7 MB 12.3 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 28.8/56.7 MB 12.4 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 29.3/56.7 MB 12.5 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 29.8/56.7 MB 12.5 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 30.4/56.7 MB 12.6 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 31.0/56.7 MB 12.8 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 31.4/56.7 MB 12.9 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 31.4/56.7 MB 12.9 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 31.4/56.7 MB 12.9 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 31.4/56.7 MB 12.9 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 31.4/56.7 MB 12.9 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 31.4/56.7 MB 12.9 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 31.4/56.7 MB 12.9 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 31.8/56.7 MB 9.7 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 32.1/56.7 MB 9.6 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 32.5/56.7 MB 9.5 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 33.0/56.7 MB 9.5 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 33.4/56.7 MB 9.4 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 33.8/56.7 MB 9.3 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 34.2/56.7 MB 9.3 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 34.6/56.7 MB 9.3 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 35.0/56.7 MB 9.2 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 35.5/56.7 MB 9.2 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 35.9/56.7 MB 9.1 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 36.3/56.7 MB 9.1 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 36.8/56.7 MB 9.1 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━ 37.2/56.7 MB 9.0 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 37.6/56.7 MB 8.9 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 38.1/56.7 MB 8.9 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━ 38.6/56.7 MB 8.8 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 39.0/56.7 MB 8.8 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 39.2/56.7 MB 8.7 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 39.2/56.7 MB 8.7 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 39.2/56.7 MB 8.7 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 39.2/56.7 MB 8.7 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 39.2/56.7 MB 8.7 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 39.2/56.7 MB 8.7 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 39.2/56.7 MB 8.7 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 39.2/56.7 MB 8.7 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 39.2/56.7 MB 8.7 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 39.4/56.7 MB 6.8 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 39.6/56.7 MB 6.6 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 39.7/56.7 MB 6.4 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 40.0/56.7 MB 6.3 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 40.2/56.7 MB 6.2 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 40.4/56.7 MB 6.1 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 40.7/56.7 MB 6.1 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 40.9/56.7 MB 6.0 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 41.2/56.7 MB 5.9 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 41.5/56.7 MB 5.8 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 41.7/56.7 MB 6.8 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 41.9/56.7 MB 6.7 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 42.1/56.7 MB 6.7 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 42.4/56.7 MB 6.6 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 42.7/56.7 MB 6.5 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 43.0/56.7 MB 6.5 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 43.3/56.7 MB 6.4 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 43.5/56.7 MB 6.4 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 43.8/56.7 MB 6.3 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 44.1/56.7 MB 6.3 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 44.4/56.7 MB 6.2 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 44.7/56.7 MB 6.2 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 45.0/56.7 MB 6.1 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 45.3/56.7 MB 6.1 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 45.6/56.7 MB 6.0 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 45.9/56.7 MB 6.0 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 46.2/56.7 MB 6.0 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 46.5/56.7 MB 5.9 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 46.9/56.7 MB 5.9 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 47.2/56.7 MB 5.8 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 47.5/56.7 MB 5.8 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 47.9/56.7 MB 5.8 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 48.3/56.7 MB 5.8 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 48.7/56.7 MB 5.8 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 49.0/56.7 MB 5.7 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 49.4/56.7 MB 5.7 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 49.8/56.7 MB 7.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 50.0/56.7 MB 7.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 50.3/56.7 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 50.7/56.7 MB 7.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 51.1/56.7 MB 7.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 51.5/56.7 MB 7.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 51.9/56.7 MB 8.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 52.3/56.7 MB 8.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 52.7/56.7 MB 8.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 53.1/56.7 MB 8.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 53.5/56.7 MB 8.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 53.9/56.7 MB 8.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 54.3/56.7 MB 8.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 54.7/56.7 MB 8.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 55.1/56.7 MB 9.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 55.6/56.7 MB 9.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.1/56.7 MB 9.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.7 MB 9.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.7/56.7 MB 9.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.7/56.7 MB 9.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.7/56.7 MB 8.6 MB/s eta 0:00:00
?25h
Downloading gradio_client-1.4.2-py3-none-any.whl (319 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/319.8 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 319.8/319.8 kB 9.6 MB/s eta 0:00:00
?25hDownloading python_multipart-0.0.12-py3-none-any.whl (23 kB)
Downloading tomlkit-0.12.0-py3-none-any.whl (37 kB)
Downloading pillow-11.0.0-cp311-cp311-macosx_10_10_x86_64.whl (3.2 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/3.2 MB ? eta -:--:--
━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.4/3.2 MB 10.6 MB/s eta 0:00:01
━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.8/3.2 MB 11.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 1.4/3.2 MB 11.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 1.8/3.2 MB 11.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 2.3/3.2 MB 11.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 2.7/3.2 MB 11.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 3.2/3.2 MB 11.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/3.2 MB 10.9 MB/s eta 0:00:00
?25h
Downloading x_transformers-1.26.6-py3-none-any.whl (33 kB)
Downloading s3fs-2024.10.0-py3-none-any.whl (29 kB)
Downloading fsspec-2024.10.0-py3-none-any.whl (179 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/179.6 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 179.6/179.6 kB 11.6 MB/s eta 0:00:00
?25hDownloading safetensors-0.4.5-cp311-cp311-macosx_10_12_x86_64.whl (392 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/392.3 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 389.1/392.3 kB 12.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 392.3/392.3 kB 9.3 MB/s eta 0:00:00
?25hDownloading transformers-4.46.2-py3-none-any.whl (10.0 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/10.0 MB ? eta -:--:--
━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.5/10.0 MB 13.0 MB/s eta 0:00:01
━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/10.0 MB 12.7 MB/s eta 0:00:01
━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/10.0 MB 12.6 MB/s eta 0:00:01
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.9/10.0 MB 12.5 MB/s eta 0:00:01
━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.4/10.0 MB 12.3 MB/s eta 0:00:01
━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/10.0 MB 12.5 MB/s eta 0:00:01
━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.4/10.0 MB 12.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 3.9/10.0 MB 12.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 4.3/10.0 MB 12.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 4.9/10.0 MB 12.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 5.4/10.0 MB 12.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 5.9/10.0 MB 12.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 6.4/10.0 MB 12.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━ 6.8/10.0 MB 12.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 7.3/10.0 MB 12.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 7.8/10.0 MB 12.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 8.4/10.0 MB 12.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 8.9/10.0 MB 12.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 9.4/10.0 MB 12.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 10.0/10.0 MB 12.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.0/10.0 MB 12.3 MB/s eta 0:00:00
?25h
Downloading aiobotocore-2.15.2-py3-none-any.whl (77 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/77.4 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/77.4 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/77.4 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/77.4 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/77.4 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 71.7/77.4 kB 2.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 77.4/77.4 kB 1.7 MB/s eta 0:00:00
?25h
Downloading aiofiles-23.2.1-py3-none-any.whl (15 kB)
Downloading anyio-4.6.2.post1-py3-none-any.whl (90 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/90.4 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 90.4/90.4 kB 5.5 MB/s eta 0:00:00
?25hDownloading appdirs-1.4.4-py2.py3-none-any.whl (9.6 kB)
Downloading descript_audiotools-0.7.2-py2.py3-none-any.whl (106 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/106.7 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 106.7/106.7 kB 8.1 MB/s eta 0:00:00
?25hDownloading docker_pycreds-0.4.0-py2.py3-none-any.whl (9.0 kB)
Downloading fastapi-0.115.4-py3-none-any.whl (94 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/94.7 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 94.7/94.7 kB 6.2 MB/s eta 0:00:00
?25h
Downloading GitPython-3.1.43-py3-none-any.whl (207 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/207.3 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 207.3/207.3 kB 8.4 MB/s eta 0:00:00
?25hDownloading httpx-0.27.2-py3-none-any.whl (76 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/76.4 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 76.4/76.4 kB 6.0 MB/s eta 0:00:00
?25hDownloading httpcore-1.0.6-py3-none-any.whl (78 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/78.0 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.0/78.0 kB 7.1 MB/s eta 0:00:00
?25h
Downloading librosa-0.9.2-py3-none-any.whl (214 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/214.3 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 214.3/214.3 kB 7.7 MB/s eta 0:00:00
?25h
Downloading lightning_utilities-0.11.8-py3-none-any.whl (26 kB)
Using cached MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl (14 kB)
Downloading orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl (266 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/266.4 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 266.4/266.4 kB 8.2 MB/s eta 0:00:00
?25hDownloading protobuf-3.19.6-py2.py3-none-any.whl (162 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/162.6 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 162.6/162.6 kB 6.9 MB/s eta 0:00:00
?25hDownloading pydantic-2.9.2-py3-none-any.whl (434 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/434.9 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 399.4/434.9 kB 10.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 434.9/434.9 kB 8.6 MB/s eta 0:00:00
?25hDownloading pydantic_core-2.23.4-cp311-cp311-macosx_10_12_x86_64.whl (1.9 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.9 MB ? eta -:--:--
━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.4/1.9 MB 11.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 0.8/1.9 MB 10.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 1.2/1.9 MB 10.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 1.6/1.9 MB 10.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.9/1.9 MB 9.8 MB/s eta 0:00:00
?25h
Downloading regex-2024.11.6-cp311-cp311-macosx_10_9_x86_64.whl (287 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/287.7 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 287.7/287.7 kB 9.2 MB/s eta 0:00:00
?25hDownloading ruff-0.7.3-py3-none-macosx_10_12_x86_64.whl (10.2 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/10.2 MB ? eta -:--:--
━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.5/10.2 MB 12.6 MB/s eta 0:00:01
━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.8/10.2 MB 11.4 MB/s eta 0:00:01
━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/10.2 MB 11.2 MB/s eta 0:00:01
━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/10.2 MB 11.4 MB/s eta 0:00:01
━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/10.2 MB 11.2 MB/s eta 0:00:01
━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.6/10.2 MB 11.2 MB/s eta 0:00:01
━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/10.2 MB 11.2 MB/s eta 0:00:01
━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.5/10.2 MB 11.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 4.0/10.2 MB 11.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 4.5/10.2 MB 11.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 4.9/10.2 MB 11.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 5.4/10.2 MB 11.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 5.7/10.2 MB 11.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 6.2/10.2 MB 11.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 6.6/10.2 MB 11.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 7.1/10.2 MB 11.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 7.5/10.2 MB 11.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 8.0/10.2 MB 11.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 8.4/10.2 MB 11.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 8.9/10.2 MB 11.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 9.4/10.2 MB 11.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 9.8/10.2 MB 11.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 9.8/10.2 MB 11.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 9.8/10.2 MB 11.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 9.8/10.2 MB 11.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 9.8/10.2 MB 11.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 9.8/10.2 MB 11.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 9.8/10.2 MB 11.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 10.0/10.2 MB 8.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 10.0/10.2 MB 8.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 10.0/10.2 MB 8.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 10.0/10.2 MB 8.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 10.0/10.2 MB 8.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 10.0/10.2 MB 8.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 10.1/10.2 MB 7.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.2/10.2 MB 7.2 MB/s eta 0:00:00
?25hDownloading safehttpx-0.1.1-py3-none-any.whl (8.4 kB)
Downloading scikit_learn-1.5.2-cp311-cp311-macosx_10_9_x86_64.whl (12.1 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/12.1 MB ? eta -:--:--
╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.2/12.1 MB 4.3 MB/s eta 0:00:03
━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.4/12.1 MB 5.1 MB/s eta 0:00:03
━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.7/12.1 MB 5.9 MB/s eta 0:00:02
━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.9/12.1 MB 6.0 MB/s eta 0:00:02
━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/12.1 MB 6.2 MB/s eta 0:00:02
━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/12.1 MB 6.3 MB/s eta 0:00:02
━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/12.1 MB 6.3 MB/s eta 0:00:02
━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/12.1 MB 6.4 MB/s eta 0:00:02
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/12.1 MB 6.5 MB/s eta 0:00:02
━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/12.1 MB 6.6 MB/s eta 0:00:02
━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.8/12.1 MB 6.7 MB/s eta 0:00:02
━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/12.1 MB 6.7 MB/s eta 0:00:02
━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.4/12.1 MB 6.8 MB/s eta 0:00:02
━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.6/12.1 MB 6.8 MB/s eta 0:00:02
━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.9/12.1 MB 6.8 MB/s eta 0:00:02
━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.2/12.1 MB 6.8 MB/s eta 0:00:02
━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 4.4/12.1 MB 6.7 MB/s eta 0:00:02
━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 4.6/12.1 MB 6.6 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 4.9/12.1 MB 6.6 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 5.1/12.1 MB 6.6 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 5.3/12.1 MB 6.5 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 5.6/12.1 MB 6.5 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 5.8/12.1 MB 6.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 6.1/12.1 MB 6.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 6.3/12.1 MB 6.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 6.5/12.1 MB 6.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 6.8/12.1 MB 6.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 7.1/12.1 MB 6.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 7.4/12.1 MB 6.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 7.6/12.1 MB 6.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 7.9/12.1 MB 6.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 8.1/12.1 MB 6.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 8.4/12.1 MB 6.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 8.6/12.1 MB 6.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 8.9/12.1 MB 6.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 9.1/12.1 MB 6.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 9.5/12.1 MB 6.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 9.7/12.1 MB 6.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 10.0/12.1 MB 6.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 10.3/12.1 MB 6.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 10.6/12.1 MB 6.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10.9/12.1 MB 6.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 11.3/12.1 MB 6.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 11.7/12.1 MB 6.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 12.0/12.1 MB 7.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.1/12.1 MB 6.9 MB/s eta 0:00:00
?25h
Downloading scipy-1.14.1-cp311-cp311-macosx_14_0_x86_64.whl (25.5 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/25.5 MB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.3/25.5 MB 9.8 MB/s eta 0:00:03
━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.7/25.5 MB 9.2 MB/s eta 0:00:03
━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/25.5 MB 9.3 MB/s eta 0:00:03
━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/25.5 MB 9.4 MB/s eta 0:00:03
━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/25.5 MB 9.2 MB/s eta 0:00:03
━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/25.5 MB 9.3 MB/s eta 0:00:03
━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/25.5 MB 9.1 MB/s eta 0:00:03
━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.8/25.5 MB 9.2 MB/s eta 0:00:03
━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/25.5 MB 9.3 MB/s eta 0:00:03
━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.6/25.5 MB 9.3 MB/s eta 0:00:03
━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.9/25.5 MB 9.4 MB/s eta 0:00:03
━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.3/25.5 MB 9.4 MB/s eta 0:00:03
━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/25.5 MB 9.5 MB/s eta 0:00:03
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.1/25.5 MB 9.5 MB/s eta 0:00:03
━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.4/25.5 MB 9.4 MB/s eta 0:00:03
━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/25.5 MB 9.5 MB/s eta 0:00:03
━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.3/25.5 MB 9.6 MB/s eta 0:00:03
━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.6/25.5 MB 9.6 MB/s eta 0:00:02
━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.0/25.5 MB 9.7 MB/s eta 0:00:02
━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.4/25.5 MB 9.7 MB/s eta 0:00:02
━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.9/25.5 MB 9.8 MB/s eta 0:00:02
━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.3/25.5 MB 9.8 MB/s eta 0:00:02
━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.7/25.5 MB 9.8 MB/s eta 0:00:02
━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 9.2/25.5 MB 9.8 MB/s eta 0:00:02
━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 9.6/25.5 MB 9.9 MB/s eta 0:00:02
━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 10.1/25.5 MB 9.9 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 10.5/25.5 MB 10.0 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 10.9/25.5 MB 10.1 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 11.4/25.5 MB 10.2 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 11.8/25.5 MB 10.3 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 12.3/25.5 MB 10.4 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 12.7/25.5 MB 10.6 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 13.1/25.5 MB 10.6 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 13.6/25.5 MB 10.8 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 14.1/25.5 MB 10.9 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 14.6/25.5 MB 11.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 15.1/25.5 MB 11.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 15.6/25.5 MB 11.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 16.1/25.5 MB 11.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 16.5/25.5 MB 11.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 17.0/25.5 MB 11.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━ 17.5/25.5 MB 11.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 18.0/25.5 MB 11.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 18.5/25.5 MB 12.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 19.0/25.5 MB 12.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 19.5/25.5 MB 12.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 20.1/25.5 MB 12.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 20.7/25.5 MB 12.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 21.2/25.5 MB 12.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 21.8/25.5 MB 13.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 22.3/25.5 MB 13.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 22.9/25.5 MB 13.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 23.5/25.5 MB 13.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 24.0/25.5 MB 13.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 24.3/25.5 MB 13.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 24.8/25.5 MB 13.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 25.4/25.5 MB 13.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 25.5/25.5 MB 13.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 25.5/25.5 MB 12.7 MB/s eta 0:00:00
?25hDownloading semantic_version-2.10.0-py2.py3-none-any.whl (15 kB)
Downloading sentry_sdk-2.18.0-py2.py3-none-any.whl (317 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/317.5 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 317.5/317.5 kB 12.1 MB/s eta 0:00:00
?25h
Downloading SoundFile-0.10.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-macosx_10_5_x86_64.macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl (616 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/616.7 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 614.4/616.7 kB 16.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 616.7/616.7 kB 12.7 MB/s eta 0:00:00
?25hDownloading starlette-0.41.2-py3-none-any.whl (73 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/73.3 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 73.3/73.3 kB 9.1 MB/s eta 0:00:00
?25h
Downloading tokenizers-0.20.3-cp311-cp311-macosx_10_12_x86_64.whl (2.7 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.7 MB ? eta -:--:--
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.5/2.7 MB 17.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 1.2/2.7 MB 16.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 1.6/2.7 MB 15.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 1.7/2.7 MB 13.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 1.7/2.7 MB 13.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 1.7/2.7 MB 13.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 1.7/2.7 MB 13.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 1.7/2.7 MB 13.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 2.1/2.7 MB 6.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 2.4/2.7 MB 6.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 2.7/2.7 MB 6.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.7/2.7 MB 6.3 MB/s eta 0:00:00
?25hDownloading typer-0.13.0-py3-none-any.whl (44 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/44.2 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 44.2/44.2 kB 3.9 MB/s eta 0:00:00
?25hDownloading uvicorn-0.32.0-py3-none-any.whl (63 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/63.7 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 63.7/63.7 kB 5.6 MB/s eta 0:00:00
?25hDownloading accelerate-1.1.1-py3-none-any.whl (333 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/333.2 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 333.2/333.2 kB 9.7 MB/s eta 0:00:00
?25hDownloading argparse-1.4.0-py2.py3-none-any.whl (23 kB)
Downloading bokeh-3.6.1-py3-none-any.whl (6.9 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/6.9 MB ? eta -:--:--
━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.4/6.9 MB 11.1 MB/s eta 0:00:01
━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.9/6.9 MB 11.3 MB/s eta 0:00:01
━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/6.9 MB 11.2 MB/s eta 0:00:01
━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/6.9 MB 11.3 MB/s eta 0:00:01
━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/6.9 MB 10.6 MB/s eta 0:00:01
━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/6.9 MB 10.6 MB/s eta 0:00:01
━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/6.9 MB 10.6 MB/s eta 0:00:01
━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/6.9 MB 10.6 MB/s eta 0:00:01
━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/6.9 MB 10.6 MB/s eta 0:00:01
━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/6.9 MB 10.6 MB/s eta 0:00:01
━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/6.9 MB 5.1 MB/s eta 0:00:01
━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.4/6.9 MB 4.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 2.7/6.9 MB 5.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 2.9/6.9 MB 5.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 3.1/6.9 MB 5.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 3.4/6.9 MB 5.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 3.8/6.9 MB 5.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 4.1/6.9 MB 5.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 4.3/6.9 MB 5.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 4.6/6.9 MB 5.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━ 4.7/6.9 MB 5.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 5.0/6.9 MB 5.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 5.2/6.9 MB 5.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 5.4/6.9 MB 5.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 5.5/6.9 MB 5.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 5.6/6.9 MB 5.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 5.7/6.9 MB 5.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 5.9/6.9 MB 5.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 6.0/6.9 MB 5.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 6.2/6.9 MB 5.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 6.3/6.9 MB 5.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 6.5/6.9 MB 5.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 6.6/6.9 MB 5.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 6.7/6.9 MB 5.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 6.9/6.9 MB 4.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.9/6.9 MB 4.8 MB/s eta 0:00:00
?25hDownloading braceexpand-0.1.7-py2.py3-none-any.whl (5.9 kB)
Downloading clean_fid-0.1.35-py3-none-any.whl (26 kB)
Downloading clip_anytorch-2.6.0-py3-none-any.whl (1.4 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.4 MB ? eta -:--:--
━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.1/1.4 MB 3.0 MB/s eta 0:00:01
━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.2/1.4 MB 2.9 MB/s eta 0:00:01
━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.3/1.4 MB 2.6 MB/s eta 0:00:01
━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.4/1.4 MB 2.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 0.5/1.4 MB 2.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 0.6/1.4 MB 2.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 0.7/1.4 MB 2.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 0.9/1.4 MB 3.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 1.0/1.4 MB 3.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 1.1/1.4 MB 3.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 1.3/1.4 MB 3.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 1.4/1.4 MB 3.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/1.4 MB 3.0 MB/s eta 0:00:00
?25h
Downloading configparser-7.1.0-py3-none-any.whl (17 kB)
Downloading dctorch-0.1.2-py3-none-any.whl (2.3 kB)
Downloading fastcore-1.7.19-py3-none-any.whl (81 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/81.3 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 81.3/81.3 kB 3.2 MB/s eta 0:00:00
?25h
Downloading ffmpy-0.4.0-py3-none-any.whl (5.8 kB)
Downloading ftfy-6.3.1-py3-none-any.whl (44 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/44.8 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 44.8/44.8 kB 4.0 MB/s eta 0:00:00
?25h
Downloading gin_config-0.5.0-py3-none-any.whl (61 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/61.3 kB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.3/61.3 kB 2.8 MB/s eta 0:00:00
?25hDownloading h5py-3.12.1-cp311-cp311-macosx_10_9_x86_64.whl (3.4 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/3.4 MB ? eta -:--:--
━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.2/3.4 MB 4.3 MB/s eta 0:00:01
━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.3/3.4 MB 4.3 MB/s eta 0:00:01
━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.5/3.4 MB 4.2 MB/s eta 0:00:01
━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.5/3.4 MB 3.9 MB/s eta 0:00:01
━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.5/3.4 MB 3.9 MB/s eta 0:00:01
━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.5/3.4 MB 3.9 MB/s eta 0:00:01
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.6/3.4 MB 2.4 MB/s eta 0:00:02
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.6/3.4 MB 2.4 MB/s eta 0:00:02
━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.7/3.4 MB 2.1 MB/s eta 0:00:02
━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.8/3.4 MB 2.1 MB/s eta 0:00:02
━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.8/3.4 MB 2.1 MB/s eta 0:00:02
━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.8/3.4 MB 1.7 MB/s eta 0:00:02
━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.8/3.4 MB 1.7 MB/s eta 0:00:02
━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.8/3.4 MB 1.7 MB/s eta 0:00:02
━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.8/3.4 MB 1.7 MB/s eta 0:00:02
━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.9/3.4 MB 1.5 MB/s eta 0:00:02
━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/3.4 MB 1.5 MB/s eta 0:00:02
━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/3.4 MB 1.5 MB/s eta 0:00:02
━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/3.4 MB 1.5 MB/s eta 0:00:02
━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/3.4 MB 1.5 MB/s eta 0:00:02
━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/3.4 MB 1.3 MB/s eta 0:00:02
━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/3.4 MB 1.3 MB/s eta 0:00:02
━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/3.4 MB 1.3 MB/s eta 0:00:02
━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/3.4 MB 1.3 MB/s eta 0:00:02
━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/3.4 MB 1.2 MB/s eta 0:00:02
━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/3.4 MB 1.2 MB/s eta 0:00:02
━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/3.4 MB 1.2 MB/s eta 0:00:02
━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/3.4 MB 1.2 MB/s eta 0:00:02
━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/3.4 MB 1.2 MB/s eta 0:00:02
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 1.1 MB/s eta 0:00:02
━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 1.1 MB/s eta 0:00:02
━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 1.1 MB/s eta 0:00:02
━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 1.1 MB/s eta 0:00:02
━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/3.4 MB 1.1 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 1.4/3.4 MB 1.1 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 1.5/3.4 MB 1.1 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 1.5/3.4 MB 1.1 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 1.5/3.4 MB 1.1 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 1.5/3.4 MB 1.0 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 1.5/3.4 MB 1.0 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 1.5/3.4 MB 1.0 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 1.5/3.4 MB 1.0 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 1.5/3.4 MB 1.0 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 1.6/3.4 MB 978.2 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 1.7/3.4 MB 982.9 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 1.7/3.4 MB 982.9 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 1.7/3.4 MB 982.9 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 1.7/3.4 MB 942.1 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 1.8/3.4 MB 947.2 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 1.8/3.4 MB 947.2 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 1.8/3.4 MB 947.2 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 1.8/3.4 MB 920.7 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 1.9/3.4 MB 921.5 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 1.9/3.4 MB 921.5 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 1.9/3.4 MB 921.5 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 1.9/3.4 MB 921.5 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 2.0/3.4 MB 900.2 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 2.0/3.4 MB 904.8 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 2.0/3.4 MB 904.8 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 2.0/3.4 MB 904.8 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 2.1/3.4 MB 890.7 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 2.2/3.4 MB 897.3 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 2.2/3.4 MB 897.3 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 2.2/3.4 MB 897.3 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 2.2/3.4 MB 897.3 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 2.3/3.4 MB 884.6 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 2.3/3.4 MB 884.6 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 2.3/3.4 MB 884.6 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 2.3/3.4 MB 884.6 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 2.4/3.4 MB 868.3 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 2.4/3.4 MB 872.9 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 2.4/3.4 MB 872.9 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 2.4/3.4 MB 872.9 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 2.4/3.4 MB 837.2 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 2.5/3.4 MB 861.4 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 2.5/3.4 MB 861.4 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 2.5/3.4 MB 861.4 kB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 2.6/3.4 MB 848.9 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 2.6/3.4 MB 849.9 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 2.6/3.4 MB 853.7 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 2.6/3.4 MB 853.7 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 2.6/3.4 MB 853.7 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 2.7/3.4 MB 836.8 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 2.7/3.4 MB 836.8 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 2.8/3.4 MB 834.9 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 2.8/3.4 MB 837.2 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 2.8/3.4 MB 837.2 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 2.9/3.4 MB 836.1 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 2.9/3.4 MB 839.0 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 2.9/3.4 MB 839.0 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 3.0/3.4 MB 845.0 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 3.1/3.4 MB 855.0 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 3.1/3.4 MB 855.0 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 3.2/3.4 MB 860.5 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 3.2/3.4 MB 878.0 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 3.2/3.4 MB 878.0 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 3.3/3.4 MB 874.5 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 3.3/3.4 MB 878.6 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 3.3/3.4 MB 878.6 kB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.4/3.4 MB 874.3 kB/s eta 0:00:00
?25hDownloading holoviews-1.20.0-py3-none-any.whl (5.0 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/5.0 MB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/5.0 MB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/5.0 MB ? eta -:--:--
╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.1/5.0 MB 3.3 MB/s eta 0:00:02
━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.1/5.0 MB 3.3 MB/s eta 0:00:02
━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.3/5.0 MB 2.2 MB/s eta 0:00:03
━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.5/5.0 MB 2.9 MB/s eta 0:00:02
━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.7/5.0 MB 3.6 MB/s eta 0:00:02
━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.9/5.0 MB 4.0 MB/s eta 0:00:02
━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/5.0 MB 4.3 MB/s eta 0:00:01
━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/5.0 MB 4.6 MB/s eta 0:00:01
━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/5.0 MB 4.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 1.9/5.0 MB 5.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 2.2/5.0 MB 5.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 2.4/5.0 MB 5.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 2.4/5.0 MB 5.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 2.4/5.0 MB 5.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 2.4/5.0 MB 5.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 2.4/5.0 MB 5.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 2.5/5.0 MB 3.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 2.5/5.0 MB 3.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 2.6/5.0 MB 3.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 2.7/5.0 MB 3.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 2.8/5.0 MB 3.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 2.9/5.0 MB 3.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 3.1/5.0 MB 3.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 3.2/5.0 MB 3.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 3.4/5.0 MB 3.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 3.5/5.0 MB 3.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 3.7/5.0 MB 3.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 3.9/5.0 MB 3.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 4.0/5.0 MB 3.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 4.2/5.0 MB 3.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 4.4/5.0 MB 3.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 4.6/5.0 MB 3.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 4.8/5.0 MB 3.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 4.9/5.0 MB 3.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.0/5.0 MB 3.7 MB/s eta 0:00:00
?25hDownloading jsonmerge-1.9.2-py3-none-any.whl (19 kB)
Downloading kornia-0.7.4-py2.py3-none-any.whl (899 kB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/899.4 kB ? eta -:--:--
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 174.1/899.4 kB 5.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 368.6/899.4 kB 5.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 563.2/899.4 kB 5.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 727.0/899.4 kB 4.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 890.9/899.4 kB 4.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 899.4/899.4 kB 4.6 MB/s eta 0:00:00
?25h
Downloading llvmlite-0.43.0-cp311-cp311-macosx_10_9_x86_64.whl (31.1 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/31.1 MB ? eta -:--:--
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.2/31.1 MB 6.0 MB/s eta 0:00:06
╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.4/31.1 MB 5.8 MB/s eta 0:00:06
╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.6/31.1 MB 5.8 MB/s eta 0:00:06
━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.9/31.1 MB 5.5 MB/s eta 0:00:06
━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/31.1 MB 5.6 MB/s eta 0:00:06
━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/31.1 MB 5.7 MB/s eta 0:00:06
━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/31.1 MB 5.8 MB/s eta 0:00:06
━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/31.1 MB 5.8 MB/s eta 0:00:06
━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/31.1 MB 5.8 MB/s eta 0:00:05
━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/31.1 MB 5.8 MB/s eta 0:00:05
━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/31.1 MB 5.8 MB/s eta 0:00:05
━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.8/31.1 MB 5.9 MB/s eta 0:00:05
━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/31.1 MB 6.0 MB/s eta 0:00:05
━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.3/31.1 MB 6.0 MB/s eta 0:00:05
━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.6/31.1 MB 6.1 MB/s eta 0:00:05
━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.8/31.1 MB 6.1 MB/s eta 0:00:05
━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.1/31.1 MB 6.1 MB/s eta 0:00:05
━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.3/31.1 MB 6.2 MB/s eta 0:00:05
━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.6/31.1 MB 6.2 MB/s eta 0:00:05
━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.9/31.1 MB 6.3 MB/s eta 0:00:05
━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.2/31.1 MB 6.3 MB/s eta 0:00:05
━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.5/31.1 MB 6.4 MB/s eta 0:00:05
━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.8/31.1 MB 6.4 MB/s eta 0:00:04
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.1/31.1 MB 6.5 MB/s eta 0:00:04
━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.4/31.1 MB 6.5 MB/s eta 0:00:04
━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.7/31.1 MB 6.6 MB/s eta 0:00:04
━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.0/31.1 MB 6.7 MB/s eta 0:00:04
━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.4/31.1 MB 6.7 MB/s eta 0:00:04
━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.7/31.1 MB 6.8 MB/s eta 0:00:04
━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.0/31.1 MB 6.9 MB/s eta 0:00:04
━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.4/31.1 MB 6.9 MB/s eta 0:00:04
━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.7/31.1 MB 7.0 MB/s eta 0:00:04
━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.1/31.1 MB 7.1 MB/s eta 0:00:04
━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.5/31.1 MB 7.1 MB/s eta 0:00:04
━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.8/31.1 MB 7.2 MB/s eta 0:00:03
━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.2/31.1 MB 7.2 MB/s eta 0:00:03
━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.5/31.1 MB 7.3 MB/s eta 0:00:03
━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.8/31.1 MB 7.4 MB/s eta 0:00:03
━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 11.2/31.1 MB 7.6 MB/s eta 0:00:03
━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 11.6/31.1 MB 7.7 MB/s eta 0:00:03
━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 11.9/31.1 MB 7.8 MB/s eta 0:00:03
━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 12.3/31.1 MB 8.0 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 12.7/31.1 MB 8.1 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 13.1/31.1 MB 8.2 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 13.4/31.1 MB 8.4 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 13.9/31.1 MB 8.6 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 14.3/31.1 MB 8.7 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 14.7/31.1 MB 8.8 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 15.1/31.1 MB 8.9 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 15.5/31.1 MB 9.0 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 15.8/31.1 MB 9.1 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 16.3/31.1 MB 9.3 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 16.7/31.1 MB 9.3 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 17.2/31.1 MB 9.4 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 17.5/31.1 MB 9.5 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 17.9/31.1 MB 9.5 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 18.4/31.1 MB 9.6 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 18.9/31.1 MB 9.7 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 19.2/31.1 MB 9.8 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 19.7/31.1 MB 9.8 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 20.0/31.1 MB 9.8 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━ 20.2/31.1 MB 9.7 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 20.6/31.1 MB 9.7 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 20.9/31.1 MB 9.7 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━ 21.3/31.1 MB 9.7 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 21.6/31.1 MB 9.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 21.9/31.1 MB 9.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 22.3/31.1 MB 9.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 22.6/31.1 MB 9.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 23.0/31.1 MB 9.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 23.3/31.1 MB 9.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 23.7/31.1 MB 9.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 24.0/31.1 MB 9.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 24.4/31.1 MB 9.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 24.8/31.1 MB 9.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 24.9/31.1 MB 9.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 25.3/31.1 MB 9.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 25.6/31.1 MB 9.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 25.8/31.1 MB 8.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 25.8/31.1 MB 8.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 25.9/31.1 MB 8.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 26.2/31.1 MB 8.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 26.5/31.1 MB 8.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 26.8/31.1 MB 8.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 27.1/31.1 MB 8.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 27.4/31.1 MB 8.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 27.7/31.1 MB 7.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 27.9/31.1 MB 7.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 28.3/31.1 MB 7.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 28.5/31.1 MB 7.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 28.8/31.1 MB 7.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 29.1/31.1 MB 7.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 29.4/31.1 MB 7.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 29.7/31.1 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 30.0/31.1 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 30.4/31.1 MB 7.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 30.7/31.1 MB 7.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 31.0/31.1 MB 7.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 31.1/31.1 MB 7.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 31.1/31.1 MB 7.3 MB/s eta 0:00:00
?25h
Downloading matplotlib-3.9.2-cp311-cp311-macosx_10_12_x86_64.whl (7.9 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/7.9 MB ? eta -:--:--
━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.3/7.9 MB 10.0 MB/s eta 0:00:01
━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.7/7.9 MB 9.7 MB/s eta 0:00:01
━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/7.9 MB 9.5 MB/s eta 0:00:01
━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/7.9 MB 9.5 MB/s eta 0:00:01
━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/7.9 MB 9.3 MB/s eta 0:00:01
━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/7.9 MB 9.4 MB/s eta 0:00:01
━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/7.9 MB 9.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 2.8/7.9 MB 9.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/7.9 MB 9.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 3.5/7.9 MB 9.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 3.8/7.9 MB 9.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 4.1/7.9 MB 9.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 4.4/7.9 MB 9.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 4.8/7.9 MB 9.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━ 5.1/7.9 MB 9.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 5.5/7.9 MB 9.1 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 5.9/7.9 MB 9.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 6.3/7.9 MB 9.3 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 6.8/7.9 MB 9.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 7.2/7.9 MB 9.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 7.7/7.9 MB 9.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 7.9/7.9 MB 9.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.9/7.9 MB 9.2 MB/s eta 0:00:00
?25hDownloading plotly-5.24.1-py3-none-any.whl (19.1 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/19.1 MB ? eta -:--:--
╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.5/19.1 MB 11.6 MB/s eta 0:00:02
━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.9/19.1 MB 11.7 MB/s eta 0:00:02
━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/19.1 MB 11.0 MB/s eta 0:00:02
━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/19.1 MB 10.9 MB/s eta 0:00:02
━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/19.1 MB 10.7 MB/s eta 0:00:02
━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.4/19.1 MB 10.7 MB/s eta 0:00:02
━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.9/19.1 MB 10.9 MB/s eta 0:00:02
━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.4/19.1 MB 11.0 MB/s eta 0:00:02
━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.8/19.1 MB 11.1 MB/s eta 0:00:02
━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.3/19.1 MB 11.3 MB/s eta 0:00:02
━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/19.1 MB 11.4 MB/s eta 0:00:02
━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.2/19.1 MB 11.4 MB/s eta 0:00:02
━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.7/19.1 MB 11.5 MB/s eta 0:00:02
━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/19.1 MB 11.4 MB/s eta 0:00:02
━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 6.7/19.1 MB 11.6 MB/s eta 0:00:02
━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 7.1/19.1 MB 11.6 MB/s eta 0:00:02
━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 7.5/19.1 MB 11.4 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 7.9/19.1 MB 11.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 8.4/19.1 MB 11.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 8.9/19.1 MB 11.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 9.5/19.1 MB 11.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 9.9/19.1 MB 11.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 10.5/19.1 MB 11.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 11.0/19.1 MB 11.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 11.6/19.1 MB 12.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 12.2/19.1 MB 12.2 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 12.7/19.1 MB 12.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 13.3/19.1 MB 12.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 13.8/19.1 MB 12.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 14.3/19.1 MB 12.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 14.9/19.1 MB 12.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 15.4/19.1 MB 12.8 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 15.9/19.1 MB 12.7 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 16.4/19.1 MB 12.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 17.0/19.1 MB 12.9 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 17.5/19.1 MB 13.0 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 18.2/19.1 MB 13.4 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 18.8/19.1 MB 13.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 19.0/19.1 MB 13.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 19.1/19.1 MB 13.2 MB/s eta 0:00:00
?25hDownloading pydub-0.25.1-py2.py3-none-any.whl (32 kB)
Downloading scikit_image-0.24.0-cp311-cp311-macosx_10_9_x86_64.whl (14.0 MB)
?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/14.0 MB ? eta -:--:--
━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.5/14.0 MB 14.8 MB/s eta 0:00:01
━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/14.0 MB 14.3 MB/s eta 0:00:01
━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/14.0 MB 14.3 MB/s eta 0:00:01
━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/14.0 MB 14.4 MB/s eta 0:00:01
━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/14.0 MB 9.0 MB/s eta 0:00:02
━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/14.0 MB 9.0 MB/s eta 0:00:02
━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/14.0 MB 6.8 MB/s eta 0:00:02
━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/14.0 MB 7.4 MB/s eta 0:00:02
━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.4/14.0 MB 6.9 MB/s eta 0:00:02
━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.6/14.0 MB 6.8 MB/s eta 0:00:02
━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.9/14.0 MB 6.9 MB/s eta 0:00:02
━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/14.0 MB 6.9 MB/s eta 0:00:02
━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.5/14.0 MB 7.0 MB/s eta 0:00:02
━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.8/14.0 MB 7.1 MB/s eta 0:00:02
━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.1/14.0 MB 7.0 MB/s eta 0:00:02
━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.4/14.0 MB 7.1 MB/s eta 0:00:02
━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/14.0 MB 7.2 MB/s eta 0:00:02
━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 5.1/14.0 MB 7.3 MB/s eta 0:00:02
━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 5.4/14.0 MB 7.3 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 5.7/14.0 MB 7.4 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 6.1/14.0 MB 7.4 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 6.4/14.0 MB 7.5 MB/s eta 0:00:02
━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 6.8/14.0 MB 7.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 7.1/14.0 MB 7.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 7.3/14.0 MB 7.6 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 7.5 MB/s eta 0:00:01
━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 7.5/14.0 MB 796.3 kB/s eta 0:00:09
━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 8.1/14.0 MB 848.7 kB/s eta 0:00:08
━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 8.4/14.0 MB 878.4 kB/s eta 0:00:07
━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 8.7/14.0 MB 904.8 kB/s eta 0:00:06
━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 9.0/14.0 MB 937.5 kB/s eta 0:00:06
━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 9.4/14.0 MB 973.9 kB/s eta 0:00:05
━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 9.8/14.0 MB 1.0 MB/s eta 0:00:05
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 10.4/14.0 MB 1.1 MB/s eta 0:00:04
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 10.9/14.0 MB 1.1 MB/s eta 0:00:03
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 11.4/14.0 MB 1.1 MB/s eta 0:00:03
^C
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 13.1/14.0 MB 1.1 MB/s eta 0:00:01
?25hERROR: Operation cancelled by user
If running this locally, you can simply set the HF_TOKEN in your local environment (as done below). If you’re using a collab notebook, you first need to upload your HF_TOKEN as a “secret key” to your collab, and the below command won’t have any affect in that case.
import os
os.environ['HF_TOKEN'] = 'Your API key'
Next, we can load the model from huggingface. Note that there are some known dependency issues with stable-audio-tools on M1 Macs, so we recommend running this as a collab notebook (or on some linux system)
import torch
import torchaudio
# import librosa
from einops import rearrange
from stable_audio_tools import get_pretrained_model
from stable_audio_tools.inference.generation import generate_diffusion_cond
import IPython.display as ipd
from functools import partial
device = "cuda" if torch.cuda.is_available() else "cpu"
# Download model
model, model_config = get_pretrained_model("stabilityai/stable-audio-open-1.0")
sample_rate = model_config["sample_rate"]
sample_size = model_config["sample_size"]
model = model.to(device)
First we’ll wrap the sampling code in a simpler wrapper, as there’s a few parameters that need to be provided but are not strictly useful to play around with.
# this just cleans things up a bit so the code below highlights the important knobs
easy_generate = partial(generate_diffusion_cond, sample_size=sample_size, sigma_min=0.3, sigma_max=500, device=device)
Next we can define our conditioning, which for the default Stable Audio Open involves text, timing, and overall length.
# Set up text and timing conditioning
conditioning = [{
"prompt": "clean guitar, sweep picking, 140 bpm, G minor",
"seconds_start": 0, # this says "where" in time the sample is in the song,
"seconds_total": 30 # total sample length in seconds, rest gets padded with silency
}]
seed = 1000
n_steps = 50
cfg = 7.5
sampler = "dpmpp-3m-sde"
output = easy_generate(
model,
conditioning=conditioning,
steps=n_steps, # number of diffusion steps to run
cfg_scale=cfg, # classifier free guidance guidance scale
sampler_type=sampler, # sampling "algorithm", check out https://github.com/Stability-AI/stable-audio-tools/blob/main/stable_audio_tools/inference/sampling.py#L177 for more options
seed=seed,
)
# Rearrange audio batch to a single sequence
output = rearrange(output, "b d n -> d (b n)")
# Peak normalize, clip, convert to int16, and save to file
output = output.to(torch.float32).div(torch.max(torch.abs(output))).clamp(-1, 1).mul(32767).to(torch.int16).cpu()[:, :round(conditioning[0]['seconds_total']*sample_rate)]
Now we can listen to the output! Note: if running on a collab notebook, rendering audio will stop the autosave feature, so be sure to delete the block outputs if you want to turn this back on!
ipd.display(ipd.Audio(output, rate=sample_rate))